-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy path.eslintrc.yaml
More file actions
45 lines (42 loc) · 825 Bytes
/
.eslintrc.yaml
File metadata and controls
45 lines (42 loc) · 825 Bytes
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
extends:
- airbnb
- prettier
parser: babel-eslint
plugins:
- import
- jasmine
env:
browser: true
node: true
jest: true
jasmine: true
settings:
import/parser: 'babel-eslint'
ecmaFeatures:
- classes
- jsx
rules:
object-curly-spacing: 0
quotes: 0
arrow-body-style: 0
arrow-parens: 0
comma-dangle: 0
react/forbid-prop-types: 0
react/jsx-filename-extension: 0
import/no-extraneous-dependencies: 0
import/no-unresolved: 0
import/extensions: 0
react/no-find-dom-node: 0
react/prefer-stateless-function: 0
prefer-template: 0
no-nested-ternary: 0
no-confusing-arrow: 0
consistent-return: 0
no-console:
- 2
- allow: ['debug', 'warn', 'error', 'log']
no-restricted-syntax: 0
max-len: [1, 120]
no-underscore-dangle: 1
no-empty: 1
object-curly-newline: 0