Skip to content

Commit

Permalink
fix(examples:basic): added eslint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian Kirchhoff committed Dec 13, 2023
1 parent 4e2299c commit 20deea4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/examples/basic/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ module.exports = {
'@vue/eslint-config-typescript',
'@vue/eslint-config-prettier/skip-formatting'
],
rules: {
'vue/no-multiple-template-root': 'off',
'vue/one-component-per-file': 'off',
'vue/component-definition-name-casing': 'off',
'vue/multi-word-component-names': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unused-vars': 'off'
},
parserOptions: {
ecmaVersion: 'latest'
}
Expand Down

0 comments on commit 20deea4

Please sign in to comment.