mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 02:44:59 +00:00
25 lines
652 B
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": []
|
|
}
|