We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4dc4b3e commit 13fcd64Copy full SHA for 13fcd64
packages/eslint-config/index.js
@@ -62,12 +62,14 @@ module.exports = {
62
},
63
64
{
65
- // These pages are not used directly by users so they can have one-word names.
66
files: [
+ // These pages are not used directly by users so they can have one-word names.
67
'**/pages/**/*.{js,ts,vue}',
68
'**/layouts/**/*.{js,ts,vue}',
69
'**/app.{js,ts,vue}',
70
- '**/error.{js,ts,vue}'
+ '**/error.{js,ts,vue}',
71
+ // These files should have multiple words in their names as they are within subdirectories.
72
+ '**/components/*/**/*.{js,ts,vue}'
73
],
74
rules: { 'vue/multi-word-component-names': 'off' }
75
0 commit comments