2016-01-13 14:07:57 -06:00
|
|
|
{
|
|
|
|
"rules": {
|
2017-09-21 10:23:31 -05:00
|
|
|
"no-string-throw": true,
|
2017-09-21 09:40:18 -05:00
|
|
|
"no-unused-expression": true,
|
2018-07-08 09:48:05 -05:00
|
|
|
"no-unused-variable": false,
|
2017-10-22 00:03:26 -05:00
|
|
|
"no-use-before-declare": false,
|
2017-10-12 08:26:49 -05:00
|
|
|
"no-duplicate-variable": true,
|
2017-09-21 10:23:31 -05:00
|
|
|
"curly": true,
|
2016-01-13 14:07:57 -06:00
|
|
|
"class-name": true,
|
2017-10-07 03:31:39 -05:00
|
|
|
"semicolon": [true, "always", "ignore-bound-class-methods"],
|
2017-09-21 10:23:31 -05:00
|
|
|
"triple-equals": [true, "allow-null-check"],
|
2016-03-18 07:20:49 -05:00
|
|
|
"comment-format": [false, "check-space"],
|
2016-01-13 14:07:57 -06:00
|
|
|
"eofline": true,
|
2016-01-13 14:22:39 -06:00
|
|
|
"forin": false,
|
2017-09-21 10:23:31 -05:00
|
|
|
"indent": [true, "spaces", 2],
|
2016-01-13 14:07:57 -06:00
|
|
|
"label-position": true,
|
2017-10-24 13:13:34 -05:00
|
|
|
"max-line-length": [true, 150],
|
2016-01-13 14:07:57 -06:00
|
|
|
"member-access": false,
|
|
|
|
"no-arg": true,
|
2017-11-23 07:53:23 -06:00
|
|
|
"no-bitwise": false,
|
2016-01-13 14:07:57 -06:00
|
|
|
"no-console": [true,
|
|
|
|
"debug",
|
|
|
|
"info",
|
|
|
|
"time",
|
|
|
|
"timeEnd",
|
|
|
|
"trace"
|
|
|
|
],
|
|
|
|
"no-construct": true,
|
|
|
|
"no-debugger": true,
|
2016-02-10 01:32:16 -06:00
|
|
|
"no-empty": false,
|
2016-01-13 14:07:57 -06:00
|
|
|
"no-eval": true,
|
|
|
|
"no-inferrable-types": true,
|
2016-01-13 14:22:39 -06:00
|
|
|
"no-shadowed-variable": false,
|
|
|
|
"no-string-literal": false,
|
2016-02-02 05:52:43 -06:00
|
|
|
"no-switch-case-fall-through": false,
|
2016-01-13 14:07:57 -06:00
|
|
|
"no-trailing-whitespace": true,
|
|
|
|
"no-var-keyword": false,
|
|
|
|
"object-literal-sort-keys": false,
|
|
|
|
"one-line": [true,
|
|
|
|
"check-open-brace",
|
|
|
|
"check-catch",
|
|
|
|
"check-else"
|
|
|
|
],
|
|
|
|
"radix": false,
|
|
|
|
"typedef-whitespace": [true, {
|
|
|
|
"call-signature": "nospace",
|
|
|
|
"index-signature": "nospace",
|
|
|
|
"parameter": "nospace",
|
|
|
|
"property-declaration": "nospace",
|
|
|
|
"variable-declaration": "nospace"
|
|
|
|
}],
|
2016-01-14 09:01:17 -06:00
|
|
|
"variable-name": [true, "ban-keywords"],
|
2016-01-13 14:07:57 -06:00
|
|
|
"whitespace": [true,
|
|
|
|
"check-branch",
|
|
|
|
"check-decl",
|
2017-09-21 10:23:31 -05:00
|
|
|
"check-type",
|
|
|
|
"check-preblock"
|
2016-01-13 14:07:57 -06:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|