24 lines
431 B
JSON
24 lines
431 B
JSON
|
{
|
||
|
"defaultSeverity": "error",
|
||
|
"extends": [
|
||
|
"tslint:recommended",
|
||
|
"tslint-react",
|
||
|
"tslint-plugin-prettier",
|
||
|
"tslint-config-prettier"
|
||
|
],
|
||
|
"jsRules": {},
|
||
|
"rules": {
|
||
|
"interface-name": [true, "never-prefix"],
|
||
|
"prettier": [
|
||
|
true,
|
||
|
{
|
||
|
"singleQuote": true,
|
||
|
"semi": false,
|
||
|
"trailingComma": "es5",
|
||
|
"bracketSpacing": false
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"rulesDirectory": []
|
||
|
}
|