Skip to content

Commit

Permalink
fix: disable vue/multi-word-component-names for app.vue and `erro…
Browse files Browse the repository at this point in the history
…r.vue` (resolves #201)
  • Loading branch information
pi0 committed May 2, 2022
1 parent 795db35 commit bbb0e27
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/eslint-config/index.js
Expand Up @@ -129,7 +129,12 @@ module.exports = {
},
overrides: [
{
files: ['pages/**/*.{js,ts,vue}', 'layouts/**/*.{js,ts,vue}'],
files: [
'pages/**/*.{js,ts,vue}',
'layouts/**/*.{js,ts,vue}',
'app.{js,ts,vue}',
'error.{js,ts,vue}',
],
rules: {
'vue/multi-word-component-names': 'off'
}
Expand Down

0 comments on commit bbb0e27

Please sign in to comment.