Skip to content

Commit 821057e

Browse files
authoredJan 5, 2022
fix: disable multiword-rule (#190)
1 parent caaea1a commit 821057e

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed
 

‎packages/eslint-config/index.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -128,5 +128,13 @@ module.exports = {
128128
'vue/max-attributes-per-line': ['error', {
129129
singleline: 5
130130
}]
131-
}
131+
},
132+
overrides: [
133+
{
134+
files: ['pages/**/*.{js,ts,vue}', 'layouts/**/*.{js,ts,vue}'],
135+
rules: {
136+
'vue/multi-word-component-names': 'off'
137+
}
138+
}
139+
]
132140
}

0 commit comments

Comments
 (0)
Please sign in to comment.