Skip to content

Commit

Permalink
chore(common): fix eslint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
eunjae-lee committed Sep 25, 2024
1 parent 4279218 commit 278e8cf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,13 @@ export default [
],
'react/prop-types': 'off',
'vue/multi-word-component-names': 'off',
'vue/html-self-closing': 'off',
},
},
{
files: ['!packages/cli/templates/vue2/**'],
rules: {
'vue/require-prop-types': 'off',
},
},
]
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ const plugin = useFieldPlugin({
:count="plugin.data.content"
@on-increase="plugin.actions.setContent(plugin.data.content + 1)"
/>
<hr />
<hr>
<ModalToggle
:is-modal-open="plugin.data.isModalOpen"
:set-modal-open="plugin.actions.setModalOpen"
/>
<hr />
<hr>
<AssetSelector :select-asset="plugin.actions.selectAsset" />
</div>
</div>
Expand Down

0 comments on commit 278e8cf

Please sign in to comment.