You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"camelcase": false,// false: Identifiers do not need to be in camelCase. We would like to enforce this except for when interacting with our api objects which use snakeCase properties.
16
-
"curly": false,// false: Do not require {} for every new block or scope
17
-
"eqeqeq": true,// true: Require triple equals (===) for comparison
18
-
"forin": true,// true: Require filtering for..in loops with obj.hasOwnProperty()
19
-
"immed": false,// true: Require immediate invocations to be wrapped in parens e.g. `(function () { } ());`
20
-
"indent": 2,// {int} Number of spaces to use for indentation
21
-
"latedef": false,// true: Require variables/functions to be defined before being used
22
-
"newcap": false,// true: Require capitalization of all constructor functions e.g. `new F()`
23
-
"noarg": true,// true: Prohibit use of `arguments.caller` and `arguments.callee`
24
-
"noempty": true,// true: Prohibit use of empty blocks
25
-
"nonew": false,// true: Prohibit use of constructors for side-effects (without assignment)
26
-
"plusplus": false,// true: Prohibit use of `++` & `--`
"camelcase": false,// false: Identifiers do not need to be in camelCase. We would like to enforce this except for when interacting with our api objects which use snakeCase properties.
14
+
"curly": false,// false: Do not require {} for every new block or scope
15
+
"eqeqeq": true,// true: Require triple equals (===) for comparison
16
+
"forin": true,// true: Require filtering for..in loops with obj.hasOwnProperty()
17
+
"immed": false,// true: Require immediate invocations to be wrapped in parens e.g. `(function () { } ());`
18
+
"indent": 2,// {int} Number of spaces to use for indentation
19
+
"latedef": false,// true: Require variables/functions to be defined before being used
20
+
"newcap": false,// true: Require capitalization of all constructor functions e.g. `new F()`
21
+
"noarg": true,// true: Prohibit use of `arguments.caller` and `arguments.callee`
22
+
"noempty": true,// true: Prohibit use of empty blocks
23
+
"nonew": false,// true: Prohibit use of constructors for side-effects (without assignment)
24
+
"plusplus": false,// true: Prohibit use of `++` & `--`
25
+
"quotmark": false,// Quotation mark consistency:
28
26
// false : do nothing (default)
29
27
// true : ensure whatever is used is consistent
30
28
// "single" : require single quotes
31
29
// "double" : require double quotes
32
-
"undef" : true,// true: Require all non-global variables to be declared (prevents global leaks)
33
-
"unused" : true,// true: Require all defined variables be used
34
-
"strict" : false,// false: Do not require all functions to be run in ES5 Strict Mode
0 commit comments