1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-23 04:07:14 +03:00
guide/front/tslint.json

34 lines
943 B
JSON
Raw Normal View History

{
"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"],
2018-11-19 18:04:23 +03:00
"no-unused-variable": true,
"semicolon": [true, "never"],
2018-11-19 18:05:36 +03:00
"no-trailing-whitespace": true,
"space-before-function-paren": true,
"whitespace": [true, "check-module"],
"trailing-comma": false,
2018-11-16 19:21:06 +03:00
"variable-name": false,
"ordered-imports" : false
},
"rulesDirectory": []
}