46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"rules": {
|
|
"array-type": [true, "array-simple"],
|
|
"class-name": true,
|
|
"comment-format": [true, "check-space"],
|
|
"curly": true,
|
|
"eofline": true,
|
|
"forin": true,
|
|
"indent": [true, "spaces"],
|
|
"interface-name": [true, "never-prefix"],
|
|
"jsdoc-format": true,
|
|
"label-position": true,
|
|
"new-parens": true,
|
|
"no-angle-bracket-type-assertion": true,
|
|
"no-conditional-assignment": true,
|
|
"no-construct": true,
|
|
"no-debugger": true,
|
|
"no-namespace": [true, "allow-declarations"],
|
|
"no-reference": true,
|
|
"no-require-imports": true,
|
|
"no-trailing-whitespace": true,
|
|
"no-unused-expression": true,
|
|
"no-use-before-declare": false,
|
|
"no-var-keyword": true,
|
|
"one-variable-per-declaration": [true, "ignore-for-loop"],
|
|
"object-literal-shorthand": true,
|
|
"ordered-imports": [
|
|
true,
|
|
{
|
|
"named-imports-order": "lowercase-last"
|
|
}
|
|
],
|
|
"radix": true,
|
|
"semicolon": [true, "always", "ignore-interfaces"],
|
|
"switch-default": true,
|
|
"triple-equals": [true, "allow-null-check"],
|
|
"use-isnan": true,
|
|
"variable-name": [
|
|
true,
|
|
"check-format",
|
|
"ban-keywords",
|
|
"allow-leading-underscore"
|
|
]
|
|
}
|
|
}
|