-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): upgrade eslint to 9.x (#41)
- Loading branch information
1 parent
9f897af
commit 59cda3d
Showing
4 changed files
with
326 additions
and
1,172 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import prettier from 'eslint-plugin-prettier/recommended'; | ||
import js from '@eslint/js'; | ||
import globals from 'globals'; | ||
|
||
export default [ | ||
{ | ||
languageOptions: { | ||
globals: { | ||
...globals.browser, | ||
}, | ||
}, | ||
}, | ||
js.configs.recommended, | ||
prettier, | ||
]; |
Oops, something went wrong.