update: add lint script to package.json

* lint files
This commit is contained in:
Braks
2021-07-09 19:21:29 +02:00
parent 179b5c5d4d
commit 65332cfde3
5 changed files with 12 additions and 8 deletions
+4 -3
View File
@@ -1,5 +1,6 @@
declare module '*.vue' {
import { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
import { DefineComponent } from 'vue';
// eslint-disable-next-line @typescript-eslint/ban-types
const component: DefineComponent<{}, {}, any>;
export default component;
}