tabby/tslint.json
Eugene Pankov 3b47047052 .
2017-03-23 22:13:32 +01:00

35 lines
880 B
JSON

{
"rulesDirectory": [
"node_modules/vrsource-tslint-rules/rules",
"node_modules/tslint-eslint-rules/dist/rules"
],
"rules": {
"no-console": [
true,
"log"
],
"no-duplicate-imports": true,
"no-duplicate-variable": true,
"no-jasmine-focus": true,
"no-var-keyword": true,
"no-eval": true,
"no-shadowed-variable": true,
"no-undef": true,
"no-unused-expression": true,
"no-unused-new": true,
"no-unused-variable": true,
"no-use-before-declare": true,
"require-internal-with-underscore": true,
"semicolon": [
false
],
"variable-name": [
true,
"ban-keywords"
],
"no-inner-declarations": [
true,
"function"
]
}
}