Browse Source

Fix linting

Mathieu Acthernoene 4 years ago
parent
commit
98d94bff4a
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      .eslintrc.js

+ 4
- 1
.eslintrc.js View File

@@ -14,7 +14,10 @@ module.exports = {
14 14
       rules: Object.assign(
15 15
         typescriptEslintRecommended.rules,
16 16
         typescriptEslintPrettier.rules,
17
-        {'@typescript-eslint/explicit-member-accessibility': 'off'},
17
+        {
18
+          '@typescript-eslint/explicit-member-accessibility': 'off',
19
+          '@typescript-eslint/no-empty-function': 'off',
20
+        },
18 21
       ),
19 22
     },
20 23
     {