Skip to content

Commit

Permalink
fix: eslint overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
mnenie committed Aug 11, 2024
1 parent 891c434 commit 66e3703
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ module.exports = {
'plugin:storybook/recommended'
],
rules: {
'vue/multi-word-component-names': 'off',
'vue/component-name-in-template-casing': [
'error',
'PascalCase',
Expand All @@ -29,6 +28,14 @@ module.exports = {
}
]
},
overrides: [
{
files: ['./src/pages/**/*.vue'],
rules: {
'vue/multi-word-component-names': 'off'
}
}
],
parserOptions: {
ecmaVersion: 'latest'
}
Expand Down

0 comments on commit 66e3703

Please sign in to comment.