New tslint rule: Interfaces must not start with I
parent
1052341d79
commit
23293a3c00
@ -1,13 +1,14 @@
|
|||||||
{
|
{
|
||||||
"defaultSeverity": "error",
|
"defaultSeverity": "error",
|
||||||
"extends": [
|
"extends": [
|
||||||
"tslint:recommended",
|
"tslint:recommended",
|
||||||
"tslint-react"
|
"tslint-react"
|
||||||
],
|
],
|
||||||
"jsRules": {},
|
"jsRules": {},
|
||||||
"rules": {
|
"rules": {
|
||||||
"quotemark": [true, "single", "jsx-double", "avoid-template", "avoid-escape"],
|
"quotemark": [true, "single", "jsx-double", "avoid-template", "avoid-escape"],
|
||||||
"no-consecutive-blank-lines": [true, 2]
|
"no-consecutive-blank-lines": [true, 2],
|
||||||
},
|
"interface-name": [true, "never-prefix"]
|
||||||
"rulesDirectory": []
|
},
|
||||||
|
"rulesDirectory": []
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue