1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/.eslintrc

58 lines
1.2 KiB
Plaintext

{
"root": true,
"extends": [
"standard",
"plugin:react/recommended"
],
"rules": {
"semi": ["error", "always"],
"no-use-before-define": "off"
},
"globals": {
"Application": true,
"angular": true,
"Fablab": true,
"moment": true,
"_": true,
"Humanize": true,
"GTM": true,
"$": true,
"KeyboardEvent": true
},
"plugins": ["html-erb"],
"overrides": [
{
"files": ["**/*.ts", "**/*.tsx"],
"env": { "browser": true, "es6": true },
"extends": [
"plugin:react/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": { "jsx": true },
"ecmaVersion": 2018,
"sourceType": "module",
"project": "./tsconfig.json"
},
"settings": {
"react": {
"version": "detect"
}
},
"plugins": ["@typescript-eslint", "react"],
"rules": {
"react/prop-types": "off"
}
},
{
"files": ["app/frontend/src/javascript/models/**/*.ts"],
"rules": {
"camelcase": "off"
}
}
]
}