From ae6ada2c2f61b8f04552e7635b884047d7320541 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Tue, 1 Oct 2024 15:20:05 -0400 Subject: [PATCH] Fix lints --- packages/@glimmer-workspace/eslint-plugin/index.js | 4 ---- packages/@glimmer/syntax/test/plugin-node-test.ts | 1 + 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/packages/@glimmer-workspace/eslint-plugin/index.js b/packages/@glimmer-workspace/eslint-plugin/index.js index 227254036..b5c280d3e 100644 --- a/packages/@glimmer-workspace/eslint-plugin/index.js +++ b/packages/@glimmer-workspace/eslint-plugin/index.js @@ -45,10 +45,6 @@ module.exports = { 'no-fallthrough': 'off', 'import/no-relative-packages': 'error', 'import/default': 'off', - 'import/no-extraneous-dependencies': [ - 'error', - { packageDir: [path.join(__dirname, '../../@glimmer/debug')] }, - ], 'qunit/require-expect': ['error', 'never-except-zero'], // we're using assert.step instead of this sort of thing 'qunit/no-conditional-assertions': 'off', diff --git a/packages/@glimmer/syntax/test/plugin-node-test.ts b/packages/@glimmer/syntax/test/plugin-node-test.ts index e4cf8f7fc..8d725f157 100644 --- a/packages/@glimmer/syntax/test/plugin-node-test.ts +++ b/packages/@glimmer/syntax/test/plugin-node-test.ts @@ -48,6 +48,7 @@ test('deprecated program visitor', (assert) => { return { name: 'plugin', visitor: { + // eslint-disable-next-line deprecation/deprecation Program(node: AST.Program) { assert.step(node.type); },