mirror of
https://github.com/Eugeny/tabby
synced 2024-11-14 17:07:15 +00:00
35 lines
880 B
JSON
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"
|
|
]
|
|
}
|
|
}
|