Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
sethvargo committed Aug 5, 2024
1 parent 38efa0b commit 0b6e790
Show file tree
Hide file tree
Showing 14 changed files with 548 additions and 557 deletions.
15 changes: 0 additions & 15 deletions .eslintrc.js

This file was deleted.

3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,6 @@ typings/

# Output of 'npm pack'
*.tgz

.idea
sarif.json
3 changes: 0 additions & 3 deletions .idea/.gitignore

This file was deleted.

9 changes: 0 additions & 9 deletions .idea/analyze-code-security-scc.iml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/misc.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/modules.xml

This file was deleted.

40 changes: 0 additions & 40 deletions .idea/vcs.xml

This file was deleted.

8 changes: 4 additions & 4 deletions dist/main/index.js

Large diffs are not rendered by default.

23 changes: 23 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import js from '@eslint/js';
import ts from 'typescript-eslint';
import tsParser from '@typescript-eslint/parser';

import prettierRecommended from 'eslint-plugin-prettier/recommended';

export default ts.config(
js.configs.recommended,
ts.configs.eslintRecommended,
{
files: ['**/*.ts', '**/*.tsx'],
languageOptions: {
parser: tsParser,
},
},
{ ignores: ['dist/', '**/*.js'] },
{
rules: {
'no-unused-vars': 'off',
},
},
prettierRecommended,
);
Loading

0 comments on commit 0b6e790

Please sign in to comment.