tabby/tslint.json

32 lines
809 B
JSON
Raw Normal View History

2016-12-23 09:06:53 +00:00
{
2017-03-23 21:13:32 +00:00
"rulesDirectory": [
"node_modules/vrsource-tslint-rules/rules",
"node_modules/tslint-eslint-rules/dist/rules"
],
2016-12-23 09:06:53 +00:00
"rules": {
2017-03-23 21:13:32 +00:00
"no-duplicate-imports": true,
2016-12-23 09:06:53 +00:00
"no-duplicate-variable": true,
2017-03-23 21:13:32 +00:00
"no-jasmine-focus": true,
"no-var-keyword": true,
2016-12-23 09:06:53 +00:00
"no-eval": true,
"no-shadowed-variable": true,
2017-03-23 20:42:00 +00:00
"no-undef": true,
2016-12-23 09:06:53 +00:00
"no-unused-expression": true,
"no-unused-new": true,
2017-03-23 20:42:00 +00:00
"no-unused-variable": true,
2016-12-23 09:06:53 +00:00
"no-use-before-declare": true,
2017-03-23 21:13:32 +00:00
"require-internal-with-underscore": true,
"semicolon": [
false
],
"variable-name": [
true,
"ban-keywords"
],
"no-inner-declarations": [
true,
"function"
]
2016-12-23 09:06:53 +00:00
}
}