You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.5 KiB
JSON
43 lines
1.5 KiB
JSON
{
|
|
"extends": ["tslint:recommended", "tslint-react"],
|
|
"rules": {
|
|
"no-console": [true, "error"],
|
|
"interface-name": [true, "never-prefix"],
|
|
"ordered-imports": false,
|
|
"jsx-boolean-value": [true, "never"],
|
|
"jsx-curly-spacing": [true, "never"],
|
|
"jsx-no-bind": [true, "allowArrowFunctions"],
|
|
"jsx-no-lambda": [false],
|
|
"jsx-no-multiline-js": false,
|
|
"jsx-space-before-trailing-slash": true,
|
|
"jsx-key": true,
|
|
"max-classes-per-file": [false, 0],
|
|
"max-line-length": false,
|
|
"no-consecutive-blank-lines": false,
|
|
"no-conditional-assignment": false,
|
|
"object-literal-sort-keys": false,
|
|
"quotemark": [true, "single", "jsx-double", "avoid-escape", "avoid-template"],
|
|
"semicolon": [true, "always", "ignore-bound-class-methods"],
|
|
"variable-name": [true, "ban-keywords", "check-format", "allow-pascal-case", "allow-leading-underscore"],
|
|
"trailing-comma": [
|
|
true,
|
|
{
|
|
"multiline": {
|
|
"objects": "always",
|
|
"arrays": "always",
|
|
"functions": "never",
|
|
"typeLiterals": "ignore"
|
|
},
|
|
"esSpecCompliant": true
|
|
}
|
|
],
|
|
"whitespace": [true,"check-branch", "check-decl", "check-operator", "check-module", "check-separator", "check-rest-spread", "check-type", "check-typecast", "check-type-operator", "check-preblock"]
|
|
},
|
|
"linterOptions": {
|
|
"exclude": [
|
|
"config/**/*.js",
|
|
"node_modules/**/*.ts"
|
|
]
|
|
}
|
|
}
|