File size: 1,610 Bytes
41a71fd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
module.exports = {
"env": {
"browser": true,
"es2021": true
},
"extends": [
'plugin:react/recommended',
'plugin:@tanstack/eslint-plugin-query/recommended',
'plugin:storybook/recommended',
'airbnb',
'plugin:prettier/recommended'
],
"overrides": [
{
"env": {
"node": true
},
"files": [
".eslintrc.{js,cjs}"
],
"parserOptions": {
"sourceType": "script"
}
}
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"react",
"@tanstack/query"
],
"ignorePatterns": ["*.svg", "*.json"],
"rules": {
"react/jsx-filename-extension": ["error", { "extensions": [".tsx"] }],
'import/no-unresolved': 'off',
'import/prefer-default-export': 'off',
'no-unused-vars': 'warn',
'react/require-default-props': 'off',
'react/react-in-jsx-scope': 'off',
'react/jsx-props-no-spreading': 'warn',
'react/function-component-definition': 'off',
'no-shadow': 'off',
'import/extensions': 'off',
'import/no-extraneous-dependencies': 'off',
'no-underscore-dangle': 'off',
'no-param-reassign': 'off',
'no-undef': 'off',
"react/jsx-max-props-per-line": ['error', {maximum: 3}],
"prettier/prettier": ['error', {arrowParens: 'always'}]
}
}
|