Skip to content

Commit

Permalink
Use export type *
Browse files Browse the repository at this point in the history
  • Loading branch information
jridgewell committed Jan 12, 2024
1 parent 503c160 commit 1ae87fa
Show file tree
Hide file tree
Showing 7 changed files with 1,410 additions and 1,473 deletions.
7 changes: 1 addition & 6 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,9 @@ module.exports = {
root: true,
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'no-only-tests'],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'prettier',
],
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'],
rules: {
'@typescript-eslint/consistent-type-imports': 'error',
'@typescript-eslint/no-duplicate-imports': 'error',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-unused-vars': [
Expand Down
5 changes: 1 addition & 4 deletions ava.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ export default {
extensions: {
ts: 'module',
},
nodeArguments: [
'--no-warnings',
'--loader=tsx',
],
nodeArguments: ['--no-warnings', '--loader=tsx'],
files: ['test/**/*.test.ts'],
};

0 comments on commit 1ae87fa

Please sign in to comment.