Skip to content

Commit

Permalink
chore: update @yeoman/eslint (#236)
Browse files Browse the repository at this point in the history
  • Loading branch information
mshima authored Aug 27, 2024
1 parent ee79243 commit b4d9fd6
Show file tree
Hide file tree
Showing 14 changed files with 2,592 additions and 725 deletions.
11 changes: 9 additions & 2 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
// @ts-check
import configs from '@yeoman/eslint';
import tseslint from 'typescript-eslint';
import { config } from 'typescript-eslint';

export default tseslint.config(...configs);
export default config(...configs, {
rules: {
'unicorn/prevent-abbreviations': 'off',
'unicorn/no-thenable': 'off',
'unicorn/prefer-event-target': 'off',
'unicorn/no-object-as-default-parameter': 'off',
},
});
Loading

0 comments on commit b4d9fd6

Please sign in to comment.