mirror of
https://github.com/alibaba/anyproxy.git
synced 2025-04-20 04:04:22 +00:00
51 lines
1.0 KiB
JSON
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"
|
|
]
|
|
}
|
|
}
|
|
} |