Skip to content

Commit

Permalink
Linting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
garethfoote committed Dec 10, 2024
1 parent ae160d2 commit 2302588
Show file tree
Hide file tree
Showing 9 changed files with 123 additions and 1,315 deletions.
16 changes: 9 additions & 7 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
const eslintConfigLove = require('eslint-config-love');
const eslint = require('@eslint/js');
const tseslint = require('typescript-eslint');

module.exports = [
{
...eslintConfigLove,
files: [ 'src/**/*.ts' ]
}
]
module.exports = tseslint.config(
eslint.configs.recommended,
tseslint.configs.recommended,
{
files: ['src/**/*.ts'],
}
);
Loading

0 comments on commit 2302588

Please sign in to comment.