-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.yml
49 lines (49 loc) · 1.22 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
plugins:
- prettier
- coffee
extends:
- eslint:recommended
- plugin:coffee/disable-incompatible
- plugin:coffee/all
- plugin:coffee/prettier-run-as-rule
rules:
coffee/prefer-destructuring: [error, {object: true}]
no-console: error
coffee/no-unused-expressions: off
coffee/no-magic-numbers: off
coffee/no-implicit-coercion: off
coffee/implicit-call: off
coffee/no-commonjs: off
coffee/vars-on-top: off
coffee/max-lines-per-function: off
coffee/no-use-before-define: off
coffee/block-scoped-var: off
coffee/max-depth: off
coffee/capitalized-comments: off
no-sync: off
require-unicode-regexp: off
global-require: off
max-statements: off
sort-keys: off
no-param-reassign: off
no-continue: off
no-multi-assign: off
coffee/no-cond-assign: off
coffee/no-nested-interpolation: off
no-warning-comments: off
no-inline-comments: off
line-comment-position: off
coffee/multiline-comment-style: off
coffee/guard-for-in: off
coffee/no-return-assign: off
coffee/spread-direction: off
max-lines: off
default-case: off
coffee/id-length: off
coffee/complexity: off
coffee/no-underscore-dangle: off
coffee/valid-jsdoc: off
coffee/spaced-comment: off
env:
node: true
es6: true