-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eslintrc
89 lines (83 loc) · 2.54 KB
/
.eslintrc
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"parser": "eslint-plugin-coffee",
"plugins": ["coffee"],
"env": {
"browser": true,
"node": true
},
"extends": [
"plugin:coffee/eslint-recommended"
],
"rules": {
"coffee/no-await-in-loop": 1,
"no-console": 1,
"coffee/no-template-curly-in-string": 1,
"coffee/block-scoped-var": 1,
"coffee/class-methods-use-this": 1,
"coffee/complexity": 2,
"coffee/dot-notation": 1,
"coffee/guard-for-in": 1,
"coffee/no-else-return": 1,
"coffee/no-empty-function": 2,
"no-eval": 2,
"coffee/no-loop-func": 1,
"coffee/no-return-assign": 1,
"coffee/no-self-compare": 1,
"coffee/no-sequences": 1,
"coffee/no-unmodified-loop-condition": 1,
"coffee/no-unused-expressions": 1,
"no-useless-concat": 1,
"coffee/no-useless-return": 1,
"coffee/no-use-before-define": 1,
"coffee/array-bracket-newline": 1,
"coffee/array-bracket-spacing": 1,
"coffee/array-element-newline": 1,
"comma-spacing": 1,
"coffee/comma-style": 1,
"computed-property-spacing": 1,
"coffee/consistent-this": 1,
"eol-last": 1,
"coffee/function-paren-newline": 1,
"coffee/id-length": 0,
"key-spacing": 1,
"coffee/keyword-spacing": 1,
"coffee/lines-between-class-members": 1,
"coffee/max-depth": 2,
"coffee/max-len": 2,
"max-lines": ["error", {"skipComments": true, "skipBlankLines": true}],
"coffee/max-lines-per-function": 2,
"max-nested-callbacks": 2,
"coffee/newline-per-chained-call": 1,
"no-continue": 1,
"coffee/no-lonely-if": 1,
"coffee/no-mixed-operators": 1,
"coffee/no-multiple-empty-lines": 1,
"coffee/no-negated-condition": 2,
"no-new-object": 1,
"no-tabs": 2,
"no-trailing-spaces": 2,
"coffee/no-unneeded-ternary": 2,
"coffee/no-whitespace-before-property": 1,
"coffee/object-curly-spacing": 1,
"coffee/operator-assignment": 1,
"coffee/operator-linebreak": 1,
"space-in-parens": 1,
"coffee/space-infix-ops": 1,
"coffee/space-unary-ops": 1,
"coffee/arrow-spacing": 1,
"no-duplicate-imports": 1,
"coffee/no-useless-computed-key": 1,
"coffee/no-backticks": 2,
"coffee/english-operators": 1,
"coffee/empty-func-parens": 1,
"coffee/shorthand-this": 1,
"coffee/no-private-function-fat-arrows": 1,
"coffee/no-unnecessary-double-quotes": 1,
"coffee/no-unused-modules": 1,
"coffee/export": 1,
"coffee/no-named-as-default-member": 1,
"coffee/no-deprecated--import": 1,
"coffee/no-default-export": 1,
"coffee/no-anonymous-default-export": 1
}
}