You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
581 B
25 lines
581 B
{
|
|
"extends": ["tslint-react", "tslint-eslint-rules"],
|
|
"rules": {
|
|
"semicolon": [true, "never"],
|
|
"quotemark": [true, "single", "jsx-double"],
|
|
"trailing-comma": [
|
|
true,
|
|
{
|
|
"singleline": "never",
|
|
"multiline": {
|
|
"objects": "always",
|
|
"arrays": "always",
|
|
"functions": "always",
|
|
"typeLiterals": "ignore"
|
|
},
|
|
"esSpecCompliant": true
|
|
}
|
|
],
|
|
"no-construct": true,
|
|
"no-debugger": true,
|
|
"no-reference": true,
|
|
"jsx-no-multiline-js": false,
|
|
"jsx-no-lambda": false
|
|
}
|
|
}
|
|
|