-
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.
all pacakages upgrade done (codedthemes#5) (codedthemes#6)
* all pacakages upgrade done * custom class changes done * mdi icon remove and add vuetify setup for mdi icon * eslint any type changes done Co-authored-by: Anjali Rana <[email protected]>
- Loading branch information
1 parent
0d7024d
commit 3e00799
Showing
31 changed files
with
1,249 additions
and
2,204 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,18 @@ | ||
import globals from 'globals'; | ||
import pluginJs from '@eslint/js'; | ||
import tseslint from 'typescript-eslint'; | ||
import pluginVue from 'eslint-plugin-vue'; | ||
|
||
export default [ | ||
{ | ||
languageOptions: { | ||
globals: globals.browser, | ||
parserOptions: { | ||
parser: '@typescript-eslint/parser' | ||
} | ||
} | ||
}, | ||
pluginJs.configs.recommended, | ||
...tseslint.configs.recommended, | ||
...pluginVue.configs['flat/essential'] | ||
]; |
Oops, something went wrong.