The following rules were removed in the latest version of @typescript-eslint in favor to naming-convention
|
"camelcase": "off", |
|
"@typescript-eslint/camelcase": ["error", { "properties": "never", "allow": ["^[A-Za-z][a-zA-Za-z]+_[A-Za-z]+$"] }], |
|
"@typescript-eslint/class-name-casing": "error", |
|
"@typescript-eslint/interface-name-prefix": "error", |
naming-convention is more strict and need to choose the most optimal configuration.
The following rules were removed in the latest version of
@typescript-eslintin favor to naming-conventionTypeScript/.eslintrc.json
Lines 20 to 21 in d45f0d0
TypeScript/.eslintrc.json
Line 23 in d45f0d0
TypeScript/.eslintrc.json
Line 25 in d45f0d0
naming-convention is more strict and need to choose the most optimal configuration.