-
Notifications
You must be signed in to change notification settings - Fork 10
/
.eslintrc.yml
60 lines (57 loc) · 1.29 KB
/
.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
extends: cheminfo
env:
browser: true
es6: true
jest: true
parserOptions:
ecmaVersion: 2017
sourceType: module
rules:
array-bracket-spacing: [error, always]
array-callback-return: warn
brace-style: off
camelcase: warn
consistent-return: off
curly: off
default-case: warn
eqeqeq: off
indent: off
no-compare-neg-zero: warn
no-console: off
no-cond-assign: warn
no-redeclare: off
no-unreachable: warn
no-unused-expressions: warn
no-unused-vars: warn
one-var: off
space-in-parens: [error, always]
space-before-function-paren: off # conflicts with beautifier
valid-jsdoc: off
space-unary-ops: off
one-var-declaration-per-line: off
no-empty-function: off
dot-location: off
quote-props: off
no-prototype-builtins: off
no-dupe-class-members: warn
no-case-declarations: warn
eol-last: off
no-throw-literal: warn
no-sequences: off
no-return-assign: off
no-loop-func: warn
no-self-compare: warn
no-new: warn
computed-property-spacing: off
padded-blocks: off
array-bracket-newline: off
symbol-description: warn
object-curly-spacing: off
spaced-comment: off
prefer-rest-params: off
template-curly-spacing: off
handle-callback-err: off
no-useless-constructor: off
prefer-spread: off
no-tabs: warn
no-irregular-whitespace: warn