mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-28 09:24:24 +01:00
54 lines
1.1 KiB
Plaintext
54 lines
1.1 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
|
|
},
|
|
"plugins": ["lint-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"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
|