-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
120 lines (117 loc) · 3.01 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"parser": "babel-eslint",
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"plugins": [
"angular"
],
"rules": {
"strict": 0,
"no-inner-declarations": [2, "both"],
"no-unexpected-multiline": 2,
"no-unreachable": 2,
"use-isnan": 2,
"valid-jsdoc": [2, {
"requireReturn": false
}],
"block-scoped-var": 2,
"curly": [2, "all"],
"default-case": 2,
"dot-location": [2, "property"],
"eqeqeq": 2,
"guard-for-in": 2,
"no-caller": 2,
"no-cond-assign": [2, "always"],
"no-dupe-args": 2,
"no-dupe-keys": 2,
"no-dupe-class-members": 2,
"no-duplicate-case": 2,
"no-empty": 2,
"no-empty-pattern": 2,
"no-eq-null": 2,
"no-extend-native": 2,
"no-fallthrough": 2,
"no-floating-decimal": 2,
"no-func-assign": 2,
"no-implied-eval": 2,
"no-labels": 2,
"no-loop-func": 2,
"no-magic-numbers": [2, { "ignore": [-1, 0, 1, 2]}],
"no-multi-spaces": 2,
"no-multi-str": 2,
"no-new-func": 2,
"no-new-wrappers": 2,
"no-new": 2,
"no-octal-escape": 2,
"no-octal": 2,
"no-param-reassign": 2,
"no-redeclare": [2, { "builtinGlobals": true }],
"no-return-assign": [2, "always"],
"no-sequences": 2,
"no-sparse-arrays": 2,
"no-throw-literal": 2,
"no-void": 2,
"no-with": 2,
"radix": [2, "as-needed"],
"wrap-iife": [2, "inside"],
"no-catch-shadow": 2,
"no-delete-var": 2,
"no-shadow-restricted-names": 2,
"no-shadow": 2,
"no-undef": [2, { "typeof": true }],
"no-use-before-define": [2, "nofunc"],
"no-path-concat": 2,
"brace-style": 2,
"camelcase": 2,
"comma-style": [2, "last"],
"comma-dangle": [2, "never"],
"eol-last": 2,
"func-names": 2,
"linebreak-style": [2, "unix"],
"max-len": [2, 120, 4],
"new-parens": 2,
"no-array-constructor": 2,
"no-bitwise": 2,
"no-continue": 2,
"no-inline-comments": 2,
"no-new-object": 2,
"no-trailing-spaces": [2, { "skipBlankLines": true }],
"no-unneeded-ternary": 2,
"no-unused-vars": [2, {"vars": "all", "varsIgnorePattern": "jQuery|_|d3|angular"}],
"no-mixed-spaces-and-tabs": [2, "smart-tabs"],
"no-multiple-empty-lines": [2, {"max": 1}],
"operator-linebreak": [2, "before"],
"require-jsdoc": [2, {
"require": {
"FunctionDeclaration": true,
"MethodDefinition": true,
"ClassDeclaration": true
}
}],
"no-class-assign": 2,
"keyword-spacing": 2,
"space-infix-ops": 2,
"space-before-function-paren": [2, "never"],
"space-before-blocks": [2, "always"],
"object-curly-spacing": [2, "never"],
"no-const-assign": 2,
"prefer-const": 2,
"prefer-spread": 2,
"prefer-template": 2,
// "indent": [2, "tab"],
"quotes": [2, "single", "avoid-escape"],
"one-var": [2, "never"],
"angular/di": [0, "array"]
},
"ecmaFeatures": {
"arrowFunctions": true,
"blockBindings": true,
"modules": true
},
"parserOptions": {
"sourceType": "module"
}
}