mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-24 16:00:11 -04:00

* fixed ton of bugs... apparently i didn't push up the work i did on the mac... and i don't have that anymore.
62 lines
1.5 KiB
JSON
62 lines
1.5 KiB
JSON
{
|
|
"rules": {
|
|
"callable-types": true,
|
|
"class-name": true,
|
|
"comment-format": [
|
|
true,
|
|
"check-space"
|
|
],
|
|
"forin": true,
|
|
"import-blacklist": [ true, "rxjs" ],
|
|
"import-spacing": true,
|
|
"indent": [
|
|
true,
|
|
"spaces"
|
|
],
|
|
"label-position": true,
|
|
"member-access": false,
|
|
"no-arg": true,
|
|
"no-bitwise": true,
|
|
"no-console": [
|
|
true,
|
|
"debug",
|
|
"info",
|
|
"time",
|
|
"timeEnd",
|
|
"trace"
|
|
],
|
|
"no-construct": true,
|
|
"no-debugger": true,
|
|
"no-duplicate-variable": true,
|
|
"no-empty": false,
|
|
"no-eval": true,
|
|
"no-inferrable-types": true,
|
|
"no-shadowed-variable": false,
|
|
"no-string-literal": false,
|
|
"no-string-throw": true,
|
|
"no-switch-case-fall-through": true,
|
|
"no-unused-expression": true,
|
|
"no-use-before-declare": true,
|
|
"no-var-keyword": true,
|
|
"object-literal-sort-keys": false,
|
|
"quotemark": [
|
|
false,
|
|
"single"
|
|
],
|
|
"semicolon": [
|
|
"always"
|
|
],
|
|
"triple-equals": [
|
|
true,
|
|
"allow-null-check"
|
|
],
|
|
"typeof-compare": true,
|
|
"unified-signatures": true,
|
|
"variable-name": false
|
|
|
|
},
|
|
"rulesDirectory": [
|
|
"node_modules/tslint-eslint-rules/dist/rules"
|
|
]
|
|
}
|