Skip to content

Instantly share code, notes, and snippets.

@Breta01
Created January 19, 2022 08:34
Eslint config
{
"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