forked from bluesmoon/boomerang
-
Notifications
You must be signed in to change notification settings - Fork 293
/
.eslintrc
146 lines (135 loc) · 5.06 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"root": true,
"env": {
"browser": true
},
"plugins": [
"html"
],
"globals": {
"BOOMR": true,
"BOOMR_start": true,
"BOOMR_lstart": true,
"BOOMR_onload": true,
"BOOMR_test": true,
"console": false,
"unescape": false,
"BOOMR_configt": true,
"BOOMR_check_doc_domain": true,
"_BOOMR_userAgentCheck": true
},
"rules": {
//
// Rules that were enabled by default in pre-1.0 eslint
// https://github.com/eslint/eslint/blob/master/docs/user-guide/migrating-to-1.0.0.md
// re-enable all the ones we are not specifically disabling
//
"no-alert": "error",
"no-array-constructor": "error",
"no-caller": "error",
"no-catch-shadow": "error",
"no-eval": "error",
"no-extend-native": "error",
"no-extra-bind": "error",
"no-implied-eval": "error",
"no-iterator": "error",
"no-label-var": "error",
"no-labels": "error",
"no-lone-blocks": "error",
"no-loop-func": "error",
"no-multi-str": "error",
"no-native-reassign": "error",
"no-new": "error",
"no-new-func": "error",
"no-new-object": "error",
"no-new-wrappers": "error",
"no-octal-escape": "error",
"no-process-exit": "error",
"no-proto": "error",
"no-return-assign": "error",
"no-script-url": "error",
"no-sequences": "error",
"no-shadow": "error",
"no-shadow-restricted-names": "error",
"no-spaced-func": "error",
"no-undef-init": "error",
"no-unused-expressions": "error",
"no-use-before-define": ["error", { "functions": false }],
"no-with": "error",
"comma-spacing": "error",
"curly": ["error", "all"],
"eol-last": "error",
"no-extra-parens": ["error", "functions"],
"eqeqeq": "error",
"new-parens": "error",
"semi": "error",
"space-infix-ops": "error",
"yoda": ["error", "never"],
"spaced-comment": ["error", "always", {
"block": {
"balanced": true
}
}],
//
// Changes over defaults
//
"keyword-spacing": "error",
"no-mixed-spaces-and-tabs": "error",
"quotes": ["error", "double", "avoid-escape"],
"dot-notation": ["error", {"allowKeywords": false}],
"space-unary-ops": "error",
"key-spacing": ["error", {"beforeColon": false, "afterColon": true, "mode": "minimum"}],
"no-empty": "error",
"brace-style": ["error", "stroustrup", { "allowSingleLine": false }],
"semi-spacing": ["error", {"before": false, "after": true}],
"indent": ["error", 2, {"VariableDeclarator": "first", "MemberExpression": 1, "CallExpression": {"arguments": 1}}],
"space-before-function-paren": ["error", "never"],
"no-trailing-spaces": ["error", { "skipBlankLines": false }],
"linebreak-style": ["error", "unix"],
"comma-dangle": ["error", "never"],
"operator-linebreak": ["error", "after"],
"space-in-parens": ["error", "never"],
"no-debugger": "error",
"block-spacing": "error",
"lines-around-comment": ["error", { allowBlockStart: true, allowObjectStart: true, ignorePattern: "BEGIN_|END_|SOASTA PRIVATE" }],
"no-inline-comments": ["error", { "ignorePattern": "^ ?(BEGIN_|END_|fails|keep)" } ],
"newline-after-var": ["error", "always"],
"newline-before-return": "error",
"max-len": ["error", 120],
"no-irregular-whitespace": "error",
"no-multiple-empty-lines": ["error", { "max": 1} ],
"padded-blocks": ["error", "never"],
"one-var-declaration-per-line": "error",
"padding-line-between-statements": ["error",
{ blankLine: "always", prev: "block-like", next: "if" },
{ blankLine: "always", prev: "expression", next: "if" },
{ blankLine: "always", prev: "var", next: "if" },
{ blankLine: "always", prev: "block-like", next: "var" },
{ blankLine: "always", prev: "try", next: "*" },
{ blankLine: "always", prev: "block-like", next: "expression" },
{ blankLine: "always", prev: "*", next: "function" }
],
//
// To enable soon
//
//"require-jsdoc": "error",
//"valid-jsdoc": "error",
//
// Disabled rules
//
// We have a lot of variables in underscore_casing
"camelcase": 0,
// Not ready for strict-mode yet
"strict": 0,
// We have some functions like BOOMR_check_doc_domain or BOOMR.
"new-cap": 0,
// We use console.log for debugging
"no-console": 0,
// We use _s in a couple places for internal vars
"no-underscore-dangle": 0,
// We delete some global vars for compat with older IE versions
"no-delete-var": 0,
// We use spaces for alignment in many places
"no-multi-spaces": 0
}
}