Browse Source

turned off naming convention rule for the types

Gleb Urvanov 4 years ago
parent
commit
82dff64353
2 changed files with 2 additions and 2 deletions
  1. 0 1
      types/.eslintignore
  2. 2 1
      types/.eslintrc.js

+ 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'
   }
 }