-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(frontend): upgrade deps to latest, migrate to eslint 9
- Loading branch information
1 parent
fdd8158
commit faa3c68
Showing
37 changed files
with
1,101 additions
and
1,138 deletions.
There are no files selected for viewing
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
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
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,21 @@ | ||
import js from '@eslint/js' | ||
import eslintPluginVue from 'eslint-plugin-vue' | ||
import skipFormattingConfig from "@vue/eslint-config-prettier/skip-formatting"; | ||
import vueTsEslintConfig from "@vue/eslint-config-typescript"; | ||
import ts from 'typescript-eslint' | ||
|
||
export default ts.config( | ||
js.configs.recommended, | ||
...ts.configs.recommended, | ||
...eslintPluginVue.configs['flat/recommended'], | ||
...vueTsEslintConfig(), | ||
{ | ||
files: ['*.vue', '**/*.vue'], | ||
languageOptions: { | ||
parserOptions: { | ||
parser: '@typescript-eslint/parser' | ||
} | ||
} | ||
}, | ||
skipFormattingConfig | ||
) |
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
Oops, something went wrong.