Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
baku89 committed Sep 29, 2023
1 parent 00d97c0 commit 21b3f9f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
1 change: 1 addition & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
"unused-imports/no-unused-imports-ts": "error",
"vue/require-default-prop": "off",
"vue/no-multiple-template-root": "off",
"vue/multi-word-component-names": "off",
"vue/no-v-model-argument": "off"
}
}
24 changes: 12 additions & 12 deletions src/components/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,18 @@ const {appStorage, registerActions, performAction} = useTweeq(
'com.baku89.paperjs-editor'
)
interface PaperDesc {
id?: string
name?: string
icon?: string
clearOnUpdate?: boolean
parameters?: {
[key: string]:
| {type: 'number'; default: number}
| {type: 'color'; default: string}
| {type: 'boolean'; default: boolean}
}
}
// interface PaperDesc {
// id?: string
// name?: string
// icon?: string
// clearOnUpdate?: boolean
// parameters?: {
// [key: string]:
// | {type: 'number'; default: number}
// | {type: 'color'; default: string}
// | {type: 'boolean'; default: boolean}
// }
// }
const source = appStorage('source', '')
Expand Down

0 comments on commit 21b3f9f

Please sign in to comment.