Skip to content

Commit

Permalink
fix: disable multiword-rule (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
manniL committed Jan 5, 2022
1 parent caaea1a commit 821057e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion packages/eslint-config/index.js
Expand Up @@ -128,5 +128,13 @@ module.exports = {
'vue/max-attributes-per-line': ['error', {
singleline: 5
}]
}
},
overrides: [
{
files: ['pages/**/*.{js,ts,vue}', 'layouts/**/*.{js,ts,vue}'],
rules: {
'vue/multi-word-component-names': 'off'
}
}
]
}

0 comments on commit 821057e

Please sign in to comment.