-
Notifications
You must be signed in to change notification settings - Fork 8
/
.eslintrc.js
45 lines (43 loc) · 917 Bytes
/
.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
/* eslint-env node */
module.exports = {
env: {
browser: true,
es6: true,
},
plugins: [],
extends: ['eslint:recommended'],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
},
rules: {
complexity: ['error', { max: 10 }],
indent: ['error', 'tab', { SwitchCase: 1 }],
'linebreak-style': ['error', 'unix'],
'max-depth': ['error', 4],
'max-len': ['error', { code: 150 }],
'max-lines': [
'error',
{ max: 300, skipBlankLines: true, skipComments: true },
],
'max-params': ['warn', { max: 4 }],
'no-shadow': ['error', { builtinGlobals: true }],
semi: ['error', 'always'],
'no-restricted-imports': [
'error',
{
paths: [
{
name: 'lodash',
message:
'Please do not import lodash as a whole: import individual lodash functions instead.',
},
],
},
],
},
};