-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patheslintrc.yaml
More file actions
70 lines (70 loc) · 1.58 KB
/
eslintrc.yaml
File metadata and controls
70 lines (70 loc) · 1.58 KB
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
extends:
- airbnb
- prettier
settings:
import/resolver:
node: {}
babel-plugin-root-import: {}
parserOptions:
sourceType: module
ecmaVersion: 8
ecmaFeatures:
jsx: true
experimentalObjectRestSpread: true
env:
es6: true
node: true
browser: true
rules:
indent: 0
semi: 0
'array-bracket-spacing': 0
'arrow-body-style': 0
'arrow-parens': 0
'arrow-spacing': 0
'block-spacing': 0
'brace-style': 0
'curly': 0
'comma-dangle': 0
'comma-spacing': 0
'function-paren-newline': 0
'import/first': 0
'import/newline-after-import': 0
'import/prefer-default-export': 0
'jsx-a11y/label-has-for': 0
'key-spacing': 0
'no-alert': 0
'no-console': 1
'no-multi-assign': 0
'no-multi-spaces': 0
'no-multiple-empty-lines': 0
'no-use-before-define':
- 2
- functions: false
'no-unused-vars': 1
'no-param-reassign': 0
'no-shadow': 0
'no-trailing-spaces': 0
'object-curly-spacing': 0
'one-var': 0
'padded-blocks': 0
'prefer-template': 0
# Fuck you prettier. You've done nothing but annoying me in my
# precious tight feedback loop.
'prettier/prettier': 0
'quotes': 0
'react/jsx-equals-spacing': 0
'react/jsx-curly-spacing': 0
'react/jsx-closing-bracket-location': 0
'react/jsx-filename-extension': 0
'react/jsx-first-prop-new-line': 0
'react/jsx-indent': 0
'react/jsx-space-before-closing': 0
'react/jsx-tag-spacing': 0
'react/prefer-stateless-function': 0
'react/prop-types': 0
'react/jsx-indent-props': 0
'react/self-closing-comp': 0
'space-infix-ops': 0
'space-in-parens': 0
'space-before-function-paren': 0