anyproxy/tslint.json
2018-08-31 17:40:30 +08:00

51 lines
1.0 KiB
JSON

{
"extends": "tslint:recommended",
"rulesDirectory": [
],
"tslint.options": {
"project": "tsconfig.json",
"typeCheck": true
},
"rules": {
"jsdoc-format": false,
"object-literal-sort-keys": false,
"quotemark": [true, "single"],
"ordered-imports": false,
"only-arrow-functions": false,
"no-reference": false,
"forin": false,
"member-ordering": false,
"max-classes-per-file": false,
"typedef": [
true,
"call-signature",
"parameter",
"member-variable-declaration"
],
"max-line-length": {
"options": [
140
]
},
"new-parens": true,
"no-arg": true,
"no-bitwise": true,
"no-conditional-assignment": true,
"no-consecutive-blank-lines": false,
"no-unused-expression": [
true,
"allow-fast-null-checks"
],
"no-console": {
"severity": "warning",
"options": [
"debug",
"info",
"log",
"time",
"timeEnd",
"trace"
]
}
}
}