Created
January 19, 2022 08:34
-
-
Save Breta01/4eb9e946a1d7c287a1bfa3f762da625d to your computer and use it in GitHub Desktop.
Eslint config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"env": { | |
"browser": true, | |
"es2021": true | |
}, | |
"extends": [ | |
"plugin:react/recommended", | |
"airbnb", | |
"plugin:@typescript-eslint/recommended" | |
], | |
"parser": "@typescript-eslint/parser", | |
"parserOptions": { | |
"ecmaFeatures": { | |
"jsx": true | |
}, | |
"ecmaVersion": 13, | |
"sourceType": "module" | |
}, | |
"plugins": ["react", "@typescript-eslint", "react-hooks"], | |
"rules": { | |
"max-len": ["warn", { "code": 120, "ignoreStrings": true }], | |
"object-curly-newline": ["error", { "multiline": true }], | |
"react-hooks/rules-of-hooks": "error", | |
"react-hooks/exhaustive-deps": "warn", | |
"react/jsx-filename-extension": [ | |
1, | |
{ | |
"extensions": [".tsx"] | |
} | |
], | |
"import/prefer-default-export": "off", | |
"import/extensions": [ | |
"error", | |
"ignorePackages", | |
{ | |
"ts": "never", | |
"tsx": "never" | |
} | |
], | |
"@typescript-eslint/explicit-module-boundary-types": "off", | |
"react/jsx-one-expression-per-line": "off", | |
"react/react-in-jsx-scope": "off", | |
"no-use-before-define": "off", | |
"react/function-component-definition": "off", | |
"react/require-default-props": "off", | |
"@typescript-eslint/no-explicit-any": "off", | |
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }], | |
"@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }], | |
"no-console": "off" | |
}, | |
"settings": { | |
"import/resolver": { | |
"typescript": {} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment