Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ChaituVR committed Aug 5, 2024
1 parent 06ec38c commit b147408
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions packages/eslint-config-vue/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,17 @@ module.exports = {
'vue/require-default-prop': 'off',
'vue/no-v-html': 'off',
'vue/custom-event-name-casing': ['error', 'camelCase'],
"no-restricted-imports": [
"error",
{
"patterns": [
{
"group": ["~icons/*"],
"message": "No need to import icons directly, they are auto-imported"
}
]
}
]
}
'no-restricted-imports': [
'error',
{
patterns: [
{
group: ['~icons/*'],
message: 'No need to import icons directly, they are auto-imported'
}
]
}
]
},
overrides: [
{
Expand Down

0 comments on commit b147408

Please sign in to comment.