taskcafe/frontend/.eslintrc.json

71 lines
1.8 KiB
JSON
Raw Normal View History

2020-04-10 04:40:22 +02:00
{
"env": {
"browser": true,
"es6": true
},
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": ["react", "@typescript-eslint", "prettier"],
"extends": [
"plugin:react/recommended",
"airbnb",
"plugin:prettier/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
2021-05-03 00:31:24 +02:00
"prettier/prettier": "warn",
"no-shadow": "off",
2020-07-12 09:06:11 +02:00
"no-restricted-syntax": ["error", "LabeledStatement", "WithStatement"],
2020-04-10 04:40:22 +02:00
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": "off",
"react/jsx-filename-extension": [2, { "extensions": [".js", ".jsx", ".ts", ".tsx"] }],
2021-05-01 05:55:37 +02:00
"react/require-default-props": "off",
"no-case-declarations": "off",
"no-plusplus": "off",
2020-04-10 04:40:22 +02:00
"react/prop-types": 0,
"react/no-unused-prop-types": "off",
"no-continue": "off",
2020-04-10 04:40:22 +02:00
"react/jsx-props-no-spreading": "off",
2020-04-11 21:24:45 +02:00
"no-param-reassign": "off",
2020-04-10 04:40:22 +02:00
"import/extensions": [
"error",
"ignorePackages",
{
"js": "never",
"mjs": "never",
"jsx": "never",
"ts": "never",
"tsx": "never"
}
],
2021-05-03 00:31:24 +02:00
"no-use-before-define": "off",
"@typescript-eslint/no-use-before-define": ["error"],
2020-04-10 04:40:22 +02:00
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [".storybook/**", "src/shared/components/**/*.stories.tsx"]
}
]
},
"settings": {
"import/resolver": {
"node": {
"paths": ["src"],
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
}
}
}