51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"extends": "tslint:latest",
|
|
"rules": {
|
|
"arrow-parens": false,
|
|
"class-name": false,
|
|
"no-empty": false,
|
|
"unified-signatures": false,
|
|
"no-trailing-whitespace": false,
|
|
"no-submodule-imports": false,
|
|
"object-literal-sort-keys": false,
|
|
"interface-name": false,
|
|
"no-consecutive-blank-lines": false,
|
|
"no-object-literal-type-assertion": false,
|
|
"no-unused-expression": false,
|
|
"trailing-comma": false,
|
|
"ordered-imports": false,
|
|
"no-unused-imports": [true, {
|
|
"ignoreExports": true,
|
|
"ignoreDeclarations": true,
|
|
"ignoreTypeReferences": true
|
|
}],
|
|
"max-line-length": [
|
|
true,
|
|
140
|
|
],
|
|
"member-access": false,
|
|
"no-string-literal": false,
|
|
"curly": false,
|
|
"only-arrow-functions": false,
|
|
"typedef": [
|
|
true
|
|
],
|
|
"no-var-requires": false,
|
|
"quotemark": [
|
|
"single"
|
|
],
|
|
"triple-equals": true,
|
|
"member-ordering": [
|
|
true,
|
|
"public-before-private",
|
|
"variables-before-functions"
|
|
],
|
|
"variable-name": [
|
|
true,
|
|
"ban-keywords",
|
|
"check-format",
|
|
"allow-leading-underscore",
|
|
"allow-pascal-case"
|
|
]
|
|
}
|
|
}
|