change eslint rule: naming-convention
This commit is contained in:
parent
89e404adf3
commit
d3947763b2
|
@ -9,12 +9,21 @@
|
|||
"@typescript-eslint"
|
||||
],
|
||||
"rules": {
|
||||
"@typescript-eslint/naming-convention": "warn",
|
||||
"@typescript-eslint/naming-convention": [
|
||||
"error",
|
||||
{
|
||||
"selector": "typeLike",
|
||||
"format": [
|
||||
"PascalCase"
|
||||
]
|
||||
}
|
||||
],
|
||||
"@typescript-eslint/semi": "warn",
|
||||
"curly": "warn",
|
||||
"eqeqeq": "warn",
|
||||
"no-throw-literal": "warn",
|
||||
"semi": "off"
|
||||
"semi": "off",
|
||||
"camelcase": "off"
|
||||
},
|
||||
"ignorePatterns": [
|
||||
"out",
|
||||
|
|
Loading…
Reference in New Issue