Skip to content

Commit 79259b4

Browse files
npm packages update done and eslint update (#38) (#39)
* npm packages update done and eslint update * custom class remove * mdi icon improvement changes done Co-authored-by: Anjali Rana <139739322+ct-anjali-rana@users.noreply.github.com>
1 parent 16d2cc7 commit 79259b4

17 files changed

Lines changed: 804 additions & 1962 deletions

File tree

vue/.eslintrc.cjs

Lines changed: 0 additions & 16 deletions
This file was deleted.

vue/eslint.config.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import globals from 'globals';
2+
import pluginJs from '@eslint/js';
3+
import tseslint from 'typescript-eslint';
4+
import pluginVue from 'eslint-plugin-vue';
5+
6+
export default [
7+
{
8+
languageOptions: {
9+
globals: globals.browser,
10+
parserOptions: {
11+
parser: '@typescript-eslint/parser'
12+
}
13+
}
14+
},
15+
pluginJs.configs.recommended,
16+
...tseslint.configs.recommended,
17+
...pluginVue.configs['flat/essential']
18+
];

0 commit comments

Comments
 (0)