xinny/.eslintrc.js

60 lines
1.2 KiB
JavaScript
Raw Normal View History

2021-07-28 09:15:52 -04:00
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
2021-07-28 09:15:52 -04:00
'airbnb',
'prettier',
2021-07-28 09:15:52 -04:00
],
parser: "@typescript-eslint/parser",
2021-07-28 09:15:52 -04:00
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 'latest',
2021-07-28 09:15:52 -04:00
sourceType: 'module',
},
plugins: [
'react',
'@typescript-eslint'
2021-07-28 09:15:52 -04:00
],
rules: {
'linebreak-style': 0,
'no-underscore-dangle': 0,
"import/prefer-default-export": "off",
"import/extensions": "off",
"import/no-unresolved": "off",
"import/no-extraneous-dependencies": [
"error",
{
devDependencies: true,
},
],
'react/no-unstable-nested-components': [
'error',
{ allowAsProps: true },
],
"react/jsx-filename-extension": [
"error",
{
extensions: [".tsx", ".jsx"],
},
],
"react/require-default-props": "off",
"react/jsx-props-no-spreading": "off",
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "error",
"@typescript-eslint/no-unused-vars": "error",
2021-07-28 09:15:52 -04:00
},
};