forked from dekkerglen/CubeCobra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.yml
56 lines (56 loc) · 1.15 KB
/
.eslintrc.yml
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
env:
browser: true
jest/globals: true
node: true
extends:
- airbnb
- prettier
parser: 'babel-eslint'
plugins:
- jest
- prettier
- react-hooks
- babel
settings:
import/resolver:
webpack:
config: webpack.dev.js
rules:
prettier/prettier: error
no-console: 0
global-require: 0
no-param-reassign: 0
no-underscore-dangle:
- error
- allow: ['_id', '_carddict']
camelcase:
- error
- properties: never
ignoreDestructuring: true
ignoreImports: true
allow: ['tcgplayer_id']
no-plusplus:
- error
- allowForLoopAfterthoughts: true
no-restricted-syntax:
- error
- WithStatement
- LabeledStatement
- BinaryExpression[operator='in']
react/jsx-filename-extension: off
react/jsx-one-expression-per-line: off
react/jsx-props-no-spreading: off
react/no-unescaped-entities:
- error
- forbid: ['>', '"', '}']
react-hooks/rules-of-hooks: error
react-hooks/exhaustive-deps: error
overrides:
- files: ['src/**']
rules:
no-restricted-imports:
- error
- patterns: ['./*', '../*']
- files: ['routes/**', 'serverjs/**']
rules:
no-console: error