33 lines
742 B
JSON
33 lines
742 B
JSON
{
|
|
"extends": "tslint:recommended",
|
|
"rules": {
|
|
"new-parens": true,
|
|
"no-arg": true,
|
|
"no-bitwise": true,
|
|
"no-conditional-assignment": true,
|
|
"no-consecutive-blank-lines": true,
|
|
"indent": [false, "tabs"],
|
|
"member-access": [true, "no-public"],
|
|
"semicolon": [true, "never"],
|
|
"variable-name": [
|
|
true,
|
|
"ban-keywords",
|
|
"check-format",
|
|
"allow-pascal-case",
|
|
"allow-leading-underscore"
|
|
],
|
|
"max-line-length": [false, { "limit": 150, "ignore-pattern": "\";?$" }],
|
|
"trailing-comma": false,
|
|
"object-literal-sort-keys": false,
|
|
"member-ordering": false,
|
|
"interface-name": false,
|
|
"arrow-parens": false,
|
|
"no-console": false,
|
|
"align": false
|
|
},
|
|
"jsRules": {
|
|
"max-line-length": {
|
|
"options": [150]
|
|
}
|
|
}
|
|
}
|