Skip to content

Commit

Permalink
chore: only run sort-imports on /src
Browse files Browse the repository at this point in the history
  • Loading branch information
KaelWD committed May 24, 2023
1 parent 79d45ca commit d35c1ce
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/vuetify/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ module.exports = {
// 'vue/html-closing-bracket-spacing': 'off',
// 'local-rules/no-render-string-reference': 'error',
'local-rules/no-components-index': 'error',
'local-rules/sort-imports': 'warn',

'no-restricted-imports': ['error', {
paths: [{
Expand All @@ -31,6 +30,12 @@ module.exports = {
// 'import/no-self-import': 'warn',
},
overrides: [
{
files: 'src/**/*',
rules: {
'local-rules/sort-imports': 'warn',
},
},
{
files: 'dev/Playground.vue',
rules: {
Expand Down

0 comments on commit d35c1ce

Please sign in to comment.