diff --git a/index.js b/index.js index a635280..f2373a4 100644 --- a/index.js +++ b/index.js @@ -47,15 +47,19 @@ module.exports = { '@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_+' }], '@typescript-eslint/explicit-function-return-type': 'error', - '@typescript-eslint/promise-function-async': [ - "error", - { - "checkArrowFunctions": true, - "checkFunctionDeclarations": true, - "checkFunctionExpressions": true, - "checkMethodDeclarations": true - } - ], + + // Commentingi this out until we are on 2.0.0 + // This makes the linter 10x slower on 1.x + // + // '@typescript-eslint/promise-function-async': [ + // "error", + // { + // "checkArrowFunctions": true, + // "checkFunctionDeclarations": true, + // "checkFunctionExpressions": true, + // "checkMethodDeclarations": true + // } + // ], 'node/exports-style': 'error', 'node/no-unsupported-features/es-syntax': [ diff --git a/package.json b/package.json index 3aceeb7..55b2854 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-config-neo", - "version": "0.3.2", + "version": "0.3.3", "description": "Official Neo Financial ESLint configuration", "main": "index.js", "author": "Neo Financial Engineering ",