Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
swkeep committed Aug 20, 2024
1 parent 07bb662 commit de3ef34
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 19 deletions.
13 changes: 5 additions & 8 deletions interactionDUI/dui_source/eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,15 @@ export default [
{
files: ['*.vue', '**/*.vue'],
languageOptions: {
parserOptions: {
parser: '@typescript-eslint/parser'
}
parserOptions: {
parser: '@typescript-eslint/parser',
},
},

plugins: {
prettier,
},

ignores: [
'vite.config.dev.js',
'vite.config.prod.js',
],
ignores: ['vite.config.dev.js', 'vite.config.prod.js'],
},
];
22 changes: 11 additions & 11 deletions interactionDUI/dui_source/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions interactionDUI/dui_source/shims-vue.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// shims-vue.d.ts
declare module '*.vue' {
import { DefineComponent } from 'vue';

const component: DefineComponent<object, object, unknown>;
export default component;
}

0 comments on commit de3ef34

Please sign in to comment.