-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
154 lines (154 loc) · 4.25 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
module.exports = {
env: {
browser: true,
es6: true,
commonjs: true,
node: true,
},
globals: {
JSX: "readonly",
NodeJS: true,
BufferEncoding: true,
Electron: true,
},
root: true,
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier",
"plugin:react/recommended",
],
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint"],
rules: {
// "@typescript-eslint/naming-convention": [
// "error",
// {
// selector: "interface",
// format: ["PascalCase"],
// custom: {
// regex: "^I[A-Z]",
// match: true,
// },
// },
// ],
"react/react-in-jsx-scope": "off",
"@typescript-eslint/no-unused-vars": ["off"],
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/ban-ts-comment": ["off", { "ts-ignore": true }],
"@typescript-eslint/ban-types": "warn",
"@typescript-eslint/no-non-null-asserted-optional-chain": "warn",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/triple-slash-reference": "warn",
"@typescript-eslint/no-inferrable-types": "off",
camelcase: [
"off",
{
allow: [
"__webpack_public_path__",
"__webpack_share_scopes__",
"__webpack_init_sharing__",
"allow_stdin",
"allowed_extensions",
"allowed_extensions_uris",
"blocked_extensions",
"blocked_extensions_uris",
"bundles_extension",
"cell_type",
"clear_output",
"codemirror_mode",
"comm_close",
"comm_id",
"comm_msg",
"comm_open",
"copy_from",
"creation_date",
"cursor_end",
"cursor_pos",
"cursor_start",
"detail_level",
"display_data",
"display_id",
"display_name",
"embed_options",
"execute_input",
"execute_result",
"execution_count",
"execution_state",
"extension_data",
"extension_name",
"file_extension",
"help_links",
"hist_access_type",
"implementation_version",
"installed_version",
"jlab_core",
"jupyterlab_extensions",
"jupyterlab_mime_extensions",
"kernel_spec",
"language_info",
"last_modified",
"last_update_date",
"latest_version",
"lineWrap_type",
"msg_type",
"msg_id",
"msgid_plural",
"nbconverter_exporter",
"nbformat_minor",
"orig_nbformat",
"output_mimetype",
"output_type",
"outputs_hidden",
"parent_header",
"pf_re",
"pkg_type",
"protocol_version",
"pygments_lexer",
"request_seq",
"slide_type",
"source_hidden",
"shutdown_reply",
"stop_on_error",
"store_history",
"target_name",
"target_module",
"UNSAFE_componentWillUpdate",
"UNSAFE_componentWillReceiveProps",
"user_expressions",
],
},
],
"id-match": ["error", "^[a-zA-Z_]+[a-zA-Z0-9_]*$"], // https://certitude.consulting/blog/en/invisible-backdoor/
"no-inner-declarations": "off",
"no-prototype-builtins": "off",
"no-control-regex": "warn",
"no-undef": "off",
"no-case-declarations": "warn",
"no-useless-escape": "off",
"prefer-const": "off",
"react/prop-types": "off",
"sort-imports": [
"error",
{
ignoreCase: true,
ignoreDeclarationSort: true,
ignoreMemberSort: false,
memberSyntaxSortOrder: ["none", "all", "multiple", "single"],
allowSeparatedGroups: false,
},
],
},
settings: {
react: {
version: "detect",
},
},
};