Skip to content

Commit

Permalink
Get lints passing
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Oct 24, 2023
1 parent 3fb5ca9 commit 4351b3c
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -78,5 +78,16 @@ module.exports = {
'n/no-extraneous-import': 'warn',
},
},

// QUnit is a weird package, and there are some issues open about fixing it
// - https://github.com/qunitjs/qunit/issues/1729
// - https://github.com/qunitjs/qunit/issues/1727
// - https://github.com/qunitjs/qunit/issues/1724
{
files: ['**/*-test.ts', '**/{test,integration-tests}/**/*.ts'],
rules: {
'@typescript-eslint/unbound-method': 'off',
},
},
],
};
10 changes: 10 additions & 0 deletions packages/@glimmer-workspace/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,15 @@ module.exports = {
plugins: ['@glimmer-workspace'],
extends: ['plugin:@glimmer-workspace/recommended'],
},
// QUnit is a weird package, and there are some issues open about fixing it
// - https://github.com/qunitjs/qunit/issues/1729
// - https://github.com/qunitjs/qunit/issues/1727
// - https://github.com/qunitjs/qunit/issues/1724
{
files: ['**/*-test.ts', '**/{test,integration-tests}/**/*.ts'],
rules: {
'@typescript-eslint/unbound-method': 'off',
},
},
],
};
10 changes: 10 additions & 0 deletions packages/@glimmer/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,15 @@ module.exports = {
plugins: ['@glimmer-workspace'],
extends: ['plugin:@glimmer-workspace/recommended'],
},
// QUnit is a weird package, and there are some issues open about fixing it
// - https://github.com/qunitjs/qunit/issues/1729
// - https://github.com/qunitjs/qunit/issues/1727
// - https://github.com/qunitjs/qunit/issues/1724
{
files: ['**/*-test.ts', '**/{test,integration-tests}/**/*.ts'],
rules: {
'@typescript-eslint/unbound-method': 'off',
},
},
],
};

0 comments on commit 4351b3c

Please sign in to comment.