tridactyl/tslint.json

41 lines
1.1 KiB
JSON
Raw Normal View History

{
"extends": ["tslint:recommended", "tslint-sonarts", "tslint-etc"],
"linterOptions": {
"exclude": [ "**/.*.generated.ts" ]
},
"rules": {
"align": false,
"arrow-parens": false,
"class-name": false,
"cognitive-complexity": false,
"curly": false,
"interface-name": false,
"jsdoc-format": false,
"max-classes-per-file": false,
"max-line-length": false,
"max-union-size": false,
"member-access": false,
"no-array-delete": false,
"no-big-function": false,
"no-commented-code": false,
"no-console": false,
"no-duplicate-string": false,
2019-04-14 10:27:22 +02:00
"no-empty": [true, "allow-empty-catch", "allow-empty-functions"],
"no-eval": false,
"no-extra-semicolon": false,
"no-shadowed-variable": false,
"no-string-throw": false,
"no-unsafe-finally": false,
"no-unused-declaration": true,
"object-literal-key-quotes": false,
"object-literal-sort-keys": false,
"only-arrow-functions": false,
"ordered-imports": false,
2019-04-13 09:46:23 +02:00
"prefer-const": [true, {"destructuring": "all"}],
"semicolon": false,
"trailing-comma": false,
"triple-equals": false,
2019-04-12 05:54:31 +02:00
"variable-name": false
}
}