2017-02-06 13:40:28 -05:00
|
|
|
{
|
2017-09-23 08:24:04 -04:00
|
|
|
"defaultSeverity": "error",
|
|
|
|
"extends": [
|
|
|
|
"tslint:recommended"
|
|
|
|
],
|
|
|
|
"jsRules": {},
|
2017-02-06 13:40:28 -05:00
|
|
|
"rules": {
|
|
|
|
"array-type": [true, "array"],
|
|
|
|
"arrow-parens": [true, "ban-single-arg-parens"],
|
|
|
|
"interface-name": [true, "never-prefix"],
|
|
|
|
"max-classes-per-file": [true, 4],
|
|
|
|
"no-consecutive-blank-lines": [true, 2],
|
2017-08-03 04:40:39 -04:00
|
|
|
"no-console": [false],
|
2017-09-23 08:24:04 -04:00
|
|
|
"no-focused-test": true,
|
2017-02-06 13:40:28 -05:00
|
|
|
"no-namespace": [true, "allow-declarations"],
|
2017-09-23 08:24:04 -04:00
|
|
|
"no-skipped-test": true,
|
2017-02-06 13:40:28 -05:00
|
|
|
"no-string-literal": false,
|
|
|
|
"quotemark": [true, "single"],
|
|
|
|
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"]
|
2017-09-23 08:24:04 -04:00
|
|
|
},
|
|
|
|
"rulesDirectory": [
|
|
|
|
"node_modules/tslint-jasmine-noSkipOrFocus"
|
|
|
|
]
|
2017-02-06 13:40:28 -05:00
|
|
|
}
|