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

82 lines
2.1 KiB
Plaintext
Raw Normal View History

2018-10-25 12:38:32 +02:00
{
2021-07-01 12:35:09 +02:00
"root": true,
"extends": [
"standard",
"plugin:react/recommended"
],
2018-11-21 11:08:53 +01:00
"rules": {
2021-07-01 12:35:09 +02:00
"semi": ["error", "always"],
"no-use-before-define": "off",
"no-case-declarations": "off"
2018-11-21 11:32:50 +01:00
},
"globals": {
"Application": true,
"angular": true,
2019-06-13 11:28:55 +02:00
"Fablab": true,
"moment": true,
2022-03-21 17:59:38 +01:00
"_": true,
"Humanize": true,
"GTM": true,
"$": true,
"KeyboardEvent": true
},
"plugins": ["html-erb", "fabmanager"],
2021-07-01 12:35:09 +02:00
"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"
},
"plugins": ["@typescript-eslint", "react"],
"rules": {
"react/prop-types": "off",
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off"
2021-07-01 12:35:09 +02:00
}
},
{
"files": ["app/frontend/src/javascript/components/**/*.tsx"],
"rules": {
"import/no-default-export": "error",
2022-06-22 13:01:22 +02:00
"import/no-unused-modules": "error",
"fabmanager/component-class-named-as-component": ["error", { "ignoreAbstractKeyword": true }],
"fabmanager/component-named-like-file": "error",
2022-06-22 13:01:22 +02:00
"fabmanager/component-documentation": "warn",
"fabmanager/component-methods-documentation": "warn",
2022-06-15 18:03:00 +02:00
"fabmanager/no-bootstrap": "error",
2022-06-20 18:06:15 +02:00
"fabmanager/no-utilities": "error",
"fabmanager/scoped-translation": ["error", { "ignoreAbstractKeyword": false }]
}
},
2021-07-01 12:35:09 +02:00
{
"files": ["app/frontend/src/javascript/models/**/*.ts"],
"rules": {
"camelcase": "off"
}
},
{
"files": ["test/**/*"],
"plugins": ["jest"],
"env": {
"jest/globals": true
}
2021-07-01 12:35:09 +02:00
}
],
"settings": {
"react": {
"version": "detect"
}
}
2018-10-25 12:38:32 +02:00
}