diff --git a/src/index.test.ts b/src/index.test.ts index dca802f6..a518e156 100644 --- a/src/index.test.ts +++ b/src/index.test.ts @@ -15,6 +15,7 @@ test('export', (t): void => { 'no-array-constructor': 'off', 'no-undef': 'off', 'no-unused-vars': 'off', + 'no-use-before-define': 'off', 'no-useless-constructor': 'off', '@typescript-eslint/adjacent-overload-signatures': 'error', '@typescript-eslint/array-type': ['error', 'array-simple'], diff --git a/src/index.ts b/src/index.ts index 1c08f581..4b26a6d3 100644 --- a/src/index.ts +++ b/src/index.ts @@ -14,6 +14,7 @@ export = { indent: 'off', 'no-array-constructor': 'off', 'no-unused-vars': 'off', + 'no-use-before-define': 'off', 'no-useless-constructor': 'off', // @typescript-eslint versions of Standard.js rules: