Эх сурвалжийг харах

turned off naming convention rule for the types

Gleb Urvanov 4 жил өмнө
parent
commit
82dff64353

+ 0 - 1
types/.eslintignore

@@ -1,2 +1 @@
 **/*.d.ts
-**

+ 2 - 1
types/.eslintrc.js

@@ -3,6 +3,7 @@ module.exports = {
     '@typescript-eslint/camelcase': 'off',
     '@typescript-eslint/class-name-casing': 'off',
     'no-unused-vars': 'off', // Required by the typescript rule below
-    '@typescript-eslint/no-unused-vars': ['error']
+    '@typescript-eslint/no-unused-vars': ['error'],
+    "@typescript-eslint/naming-convention": 'off'
   }
 }