featurebase/lattice/tslint.json

25 lines
652 B
JSON

{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"interface-name": false,
"ordered-imports": false,
"no-shadowed-variable": false,
"no-string-literal": false,
"quotemark": {
"options": ["single", "jsx-double", "avoid-escape"]
},
"trailing-comma": {
"options": {
"multiline": "never"
}
},
"variable-name": {
"options": ["ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"]
}
},
"rulesDirectory": []
}