mirror of
https://github.com/aelve/guide.git
synced 2024-11-23 12:15:06 +03:00
072db0b3df
* Change semicolon rule in tslint * tslint rule added * typings and category item actions refactored
34 lines
945 B
JSON
34 lines
945 B
JSON
{
|
|
"defaultSeverity": "error",
|
|
"extends": [
|
|
"tslint:recommended"
|
|
],
|
|
"jsRules": {},
|
|
"rules": {
|
|
"arrow-parens": false,
|
|
"comment-format": [true, "check-space"],
|
|
"max-classes-per-file": [false],
|
|
"member-access": false,
|
|
"member-ordering": false,
|
|
"no-console": false,
|
|
"no-string-literal": false,
|
|
"no-shadowed-variable": false,
|
|
"no-angle-bracket-type-assertion": false,
|
|
"max-line-length": false,
|
|
"no-unused-expression": [true, "allow-fast-null-checks"],
|
|
"no-var-requires": false,
|
|
"object-literal-sort-keys": false,
|
|
"only-arrow-functions": false,
|
|
"quotemark": [true, "single"],
|
|
"no-unused-variable": true,
|
|
"semicolon": [true, "never"],
|
|
"no-trailing-whitespace": true,
|
|
"space-before-function-paren": true,
|
|
"whitespace": [true, "check-module"],
|
|
"trailing-comma": false,
|
|
"variable-name": false,
|
|
"ordered-imports" : false
|
|
},
|
|
"rulesDirectory": []
|
|
}
|