##// END OF EJS Templates
Слияние
Слияние

File last commit:

r79:e5bb5e80ce96 v1.2.3 default
r92:43e5b8181346 merge default
Show More
tslint.json
47 lines | 1.2 KiB | application/json | JsonLexer
{
"extends": "tslint:recommended",
"defaultSeverity": "warn",
"rules": {
"align": [
true,
"parameters",
"statements"
],
"interface-name": [
false
],
"max-line-length": [
true,
185
],
"quotemark": [true, "double", "avoid-escape"],
"member-access": false,
"semicolon": [true, "always", "ignore-bound-class-methods"],
"no-bitwise": false,
"no-empty": false,
"no-namespace": false,
"ordered-imports": false,
"no-return-await": true,
"no-floating-promises": true,
"one-line": [
true,
"check-open-brace",
"check-catch",
"check-whitespace"
],
"object-literal-sort-keys": false,
"trailing-comma": [
true,
{
"singleline": "never",
"multiline": "never"
}
],
"variable-name": false,
"curly": false,
"array-type": false,
"arrow-parens": [
true,
"ban-single-arg-parens"
]
}
}