-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.yaml
37 lines (33 loc) · 1.07 KB
/
.eslintrc.yaml
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
# © 2017-present Harald Rudell <[email protected]> (http://www.haraldrudell.com)
# This source code is licensed under the ISC-style license found in the LICENSE file in the root directory of this source tree.
root: true
parser: babel-eslint
rules:
accessor-pairs: off
brace-style: [error, 1tbs]
comma-dangle: [error, always-multiline]
consistent-return: off
curly: off
dot-location: [error, property]
dot-notation: error
eol-last: error
eqeqeq: [error, allow-null]
indent: off
jsx-quotes: [error, prefer-double]
keyword-spacing: [error, {after: true, before: true}]
max-len: off
no-bitwise: off
no-console: off
no-inner-declarations: [error, functions]
no-multi-spaces: error
no-restricted-syntax: [error, WithStatement]
semi: off
no-shadow: error
no-unused-expressions: [error, {allowShortCircuit: true}]
no-unused-vars: [error, {args: none}]
no-useless-concat: off
quotes: [error, single, {avoidEscape: true, allowTemplateLiterals: true }]
space-before-blocks: error
space-before-function-paren: off
globals:
expectDev: true