generated from Yegorich555/webpack-must-have
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
100 lines (96 loc) · 3.32 KB
/
.eslintrc.js
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*
tslint won't be supported: https://github.com/palantir/tslint/issues/4534
you should use typescript-eslint/eslint-plugin: https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/eslint-plugin
but you can't do it with {parser: 'babel-eslint'}: https://github.com/typescript-eslint/typescript-eslint#what-about-babel-and-babel-eslint
*/
/** @type {import("eslint").Linter.Config} */
module.exports = {
parser: "@typescript-eslint/parser",
parserOptions: {
sourceType: "module",
ecmaFeatures: {
jsx: true,
},
},
extends: ["eslint:recommended", "airbnb", "prettier", "plugin:@typescript-eslint/recommended"],
env: {
es6: true,
node: true,
browser: true,
},
globals: {
DEV: true,
},
plugins: ["json", "prettier", "import", "@typescript-eslint", "unused-imports"],
rules: {
"@typescript-eslint/no-explicit-any": [
"error",
{
fixToUnknown: true,
ignoreRestArgs: false,
},
],
"@typescript-eslint/no-shadow": ["error"],
"@typescript-eslint/no-use-before-define": "error",
"react/jsx-filename-extension": ["error", { extensions: [".tsx"] }],
"react/destructuring-assignment": 0,
// "react/jsx-max-props-per-line": [1, { maximum: 1 }], //it doesn't work with prettier, you can remove prettier from rules: 'prettier/prettier'...
// "react/jsx-first-prop-new-line": [1, "multiline"], //it doesn't work with prettier, you can remove prettier from rules: 'prettier/prettier'...
"react/prop-types": 0,
"react/prefer-stateless-function": 0,
"react/react-in-jsx-scope": 0,
"react/jsx-props-no-spreading": 0,
"react/jsx-curly-newline": 0, // it conflicts with prettier
"react/jsx-wrap-multilines": ["error", { arrow: true, return: true, declaration: true }],
"react/function-component-definition": [2, { namedComponents: "function-declaration" }],
"prettier/prettier": ["error"],
"jsx-a11y/anchor-is-valid": 0,
"no-shadow": "off",
"no-use-before-define": "off",
"require-await": "error",
"spaced-comment": ["error", "always"],
"unused-imports/no-unused-imports": "error",
"no-underscore-dangle": "off",
"no-unused-expressions": ["error", { allowShortCircuit: true }],
"no-console": process.env.NODE_ENV === "production" ? "error" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off",
"no-alert": process.env.NODE_ENV === "production" ? "error" : "off",
"no-plusplus": "off",
"class-methods-use-this": "off",
"max-len": [
"warn",
{
code: 120,
tabWidth: 2,
comments: 1000,
ignoreComments: true,
ignoreTrailingComments: true,
ignoreUrls: true,
ignoreStrings: true,
ignoreTemplateLiterals: true,
ignoreRegExpLiterals: true,
},
],
"import/extensions": [
"error",
"ignorePackages",
{
js: "never",
jsx: "never",
ts: "never",
tsx: "never",
},
],
},
settings: {
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"],
},
"import/resolver": {
typescript: {
alwaysTryTypes: true, // always try to resolve types under `<root>@types` directory even it doesn't contain any source code, like `@types/unist`
project: ["./tsconfig.json"],
},
},
},
};