@@ -10,8 +10,6 @@ import react from "eslint-plugin-react";
1010import globals from "globals" ;
1111import tseslint from "typescript-eslint" ;
1212
13- /* eslint-disable @typescript-eslint/naming-convention -- Not applicable to this file */
14-
1513export default tseslint . config (
1614 js . configs . recommended ,
1715 prettierRecommended ,
@@ -47,33 +45,6 @@ export default tseslint.config(
4745 "@typescript-eslint/explicit-module-boundary-types" : "error" ,
4846 "@typescript-eslint/init-declarations" : "error" ,
4947 "@typescript-eslint/method-signature-style" : [ "error" , "method" ] ,
50- "@typescript-eslint/naming-convention" : [
51- "error" ,
52- {
53- filter : {
54- match : false ,
55- regex : "^(help-issue-label|short-description)$" ,
56- } ,
57- format : [ "camelCase" ] ,
58- leadingUnderscore : "allow" ,
59- selector : "default" ,
60- trailingUnderscore : "allow" ,
61- } ,
62- {
63- format : [ "camelCase" , "PascalCase" ] ,
64- selector : "import" ,
65- } ,
66- {
67- format : [ "camelCase" , "PascalCase" , "UPPER_CASE" ] ,
68- leadingUnderscore : "allow" ,
69- selector : "variable" ,
70- trailingUnderscore : "allow" ,
71- } ,
72- {
73- format : [ "PascalCase" ] ,
74- selector : "typeLike" ,
75- } ,
76- ] ,
7748 "@typescript-eslint/no-import-type-side-effects" : "error" ,
7849 "@typescript-eslint/no-shadow" : "error" ,
7950 "@typescript-eslint/no-unnecessary-parameter-property-assignment" :
@@ -296,5 +267,3 @@ export default tseslint.config(
296267 } ,
297268 } ,
298269) ;
299-
300- /* eslint-enable @typescript-eslint/naming-convention */
0 commit comments