Files
catherine-league/client/tslint.json
2020-07-26 13:25:04 +09:00

41 lines
918 B
JSON

{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-react"
],
"jsRules": {},
"rules": {
"curly": [true, "ignore-same-line"],
"typedef": [
true,
"call-signature",
"arrow-call-signature",
"parameter",
"member-variable-declaration",
"property-declaration"
],
"no-any": false,
"quotemark": [true, "single"],
"trailing-comma": false,
"max-line-length": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"member-ordering": false,
"no-console": false,
"align": false,
"semicolon": [true, "always"],
"whitespace": [true, "check-module"],
"interface-over-type-literal": false,
"member-access": false,
"jsx-no-lambda": false,
"jsx-no-multiline-js": false
},
"rulesDirectory": [],
"linterOptions": {
"exclude": [
"src/serviceWorker.ts"
]
}
}