Kendryte-dev-extension/tslint.json

21 lines
367 B
JSON
Raw Normal View History

2019-12-04 05:13:03 -05:00
{
"rules": {
"no-string-throw": true,
"no-unused-expression": true,
"no-duplicate-variable": true,
"curly": true,
"class-name": true,
"semicolon": [
false,
"always"
],
"triple-equals": true,
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn"
},
"defaultSeverity": "warning",
"plugins": [
"react-hooks"
]
}