Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix: disable vue/multi-word-component-names for files in subdirectori…
…es (#211)

Closes #208
  • Loading branch information
FelixGraf committed Aug 3, 2022
1 parent d4250a6 commit c54d7fd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/eslint-config/index.js
Expand Up @@ -130,10 +130,10 @@ module.exports = {
overrides: [
{
files: [
'pages/**/*.{js,ts,vue}',
'layouts/**/*.{js,ts,vue}',
'app.{js,ts,vue}',
'error.{js,ts,vue}'
'**/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 c54d7fd

Please sign in to comment.