Browse Source

Turn off new-cap rule

Leszek Wiesner 4 years ago
parent
commit
70237d4b12
1 changed files with 2 additions and 1 deletions
  1. 2 1
      pioneer/.eslintrc.js

+ 2 - 1
pioneer/.eslintrc.js

@@ -13,6 +13,7 @@ module.exports = {
     ...base.rules,
     '@typescript-eslint/no-explicit-any': 'off',
     '@typescript-eslint/camelcase': 'off',
-    "react/prop-types": "off"
+    'react/prop-types': 'off',
+    'new-cap': 'off'
   }
 };