Skip to content

Commit

Permalink
Update deps (#430)
Browse files Browse the repository at this point in the history
  • Loading branch information
sethvargo authored Aug 5, 2024
1 parent 5e210ff commit 984b9cf
Show file tree
Hide file tree
Showing 8 changed files with 497 additions and 495 deletions.
15 changes: 0 additions & 15 deletions .eslintrc.js

This file was deleted.

18 changes: 18 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
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'] },
prettierRecommended,
);
Loading

0 comments on commit 984b9cf

Please sign in to comment.