-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.yml
More file actions
49 lines (39 loc) · 831 Bytes
/
.eslintrc.yml
File metadata and controls
49 lines (39 loc) · 831 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
46
47
48
49
---
extends:
- "eslint-config-shakacode"
- "plugin:flowtype/recommended"
- "prettier"
- "prettier/flowtype"
- "prettier/react"
plugins:
- "flowtype"
- "prettier"
env:
jest: true
rules:
no-unused-vars:
- "error"
- args: "after-used"
arrow-body-style: "off"
no-underscore-dangle: "off"
no-multi-assign: "off"
prettier/prettier:
- "error"
- printWidth: 80
tabWidth: 2
trailingComma: "all"
singleQuote: true
react/sort-comp: "off"
react/jsx-filename-extension:
- "error"
- extensions:
- "js"
import/no-extraneous-dependencies:
- "error"
- devDependencies: true
import/prefer-default-export: "off"
flowtype/require-valid-file-annotation:
- "error"
- "always"
flowtype/no-weak-types: "error"
flowtype/no-dupe-keys: "error"