-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.yml
44 lines (35 loc) · 919 Bytes
/
.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
env:
browser: true
plugins:
- import
parser: 'babel-eslint'
parserOptions:
sourceType: 'module'
extends:
- standard
- prettier
- 'standard-jsx'
- 'standard-react'
settings:
react:
version: '16.4'
rules:
no-console: 'error'
# Disable some rules from eslint:recommended.
no-empty: ['error', { 'allowEmptyCatch': true }]
# Allow unused parameters. In callbacks, removing them seems to obscure
# what the functions are doing.
no-unused-vars: ['error', { 'args': 'none' }]
# These should be disabled by eslint-config-prettier, but are not.
react/jsx-curly-spacing: 'off'
jsx-quotes: 'off'
# spaced-comment: "off"
# standard/object-curly-even-spacing: "off"
# one-var: "off"
# Shields additions.
no-var: 'error'
prefer-const: 'error'
strict: 'error'
arrow-body-style: ['error', 'as-needed']
object-shorthand: ['error', 'properties']
prefer-template: 'error'