Skip to content

Commit 35947e9

Browse files
committed
chore(vite-plugin): apply new lint rules
1 parent 2d8b688 commit 35947e9

29 files changed

Lines changed: 30 additions & 30 deletions

vite-plugin/playground/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
"@vitejs/plugin-vue": "^6.0.5",
1919
"pug": "^3.0.4",
2020
"sass-embedded": "^1.98.0",
21-
"vite": "^8.0.7"
21+
"vite": "^8.0.8"
2222
}
2323
}

vite-plugin/playground/src/components/js-pug/AliasedImports.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ div
66
</template>
77

88
<script setup>
9-
import { QBtn as SomeComponent, Notify } from 'quasar'
9+
import { Notify, QBtn as SomeComponent } from 'quasar'
1010
1111
console.log(SomeComponent)
1212
console.log('Notify', Notify)

vite-plugin/playground/src/components/js-pug/CustomWithImports.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ div
66
</template>
77

88
<script setup>
9-
import { QBtn, Notify } from 'quasar'
9+
import { Notify, QBtn } from 'quasar'
1010
1111
console.log(QBtn)
1212
console.log('Notify', Notify)

vite-plugin/playground/src/components/js-pug/ImportsTest.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ div
66
</template>
77

88
<script setup>
9-
import { QBtn, Notify } from 'quasar'
9+
import { Notify, QBtn } from 'quasar'
1010
1111
console.log(QBtn)
1212
console.log('Notify', Notify)

vite-plugin/playground/src/components/js-script-setup/AliasedImports.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</template>
99

1010
<script setup>
11-
import { QBtn as SomeComponent, Notify } from 'quasar'
11+
import { Notify, QBtn as SomeComponent } from 'quasar'
1212
1313
console.log(SomeComponent)
1414
console.log('Notify', Notify)

vite-plugin/playground/src/components/js-script-setup/CustomWithImports.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</template>
1010

1111
<script setup>
12-
import { QBtn, Notify } from 'quasar'
12+
import { Notify, QBtn } from 'quasar'
1313
import CustomComponent from './custom-component.js'
1414
1515
console.log(QBtn)

vite-plugin/playground/src/components/js-script-setup/ImportsTest.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</template>
99

1010
<script setup>
11-
import { QBtn, Notify } from 'quasar'
11+
import { Notify, QBtn } from 'quasar'
1212
1313
console.log(QBtn)
1414
console.log('Notify', Notify)

vite-plugin/playground/src/components/js-script-setup/OnlyCustomWithImports.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</template>
88

99
<script setup>
10-
import { QBtn, Notify } from 'quasar'
10+
import { Notify, QBtn } from 'quasar'
1111
import CustomComponent from './custom-component.js'
1212
1313
console.log(QBtn)

vite-plugin/playground/src/components/js-script/AliasedImports.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</template>
99

1010
<script>
11-
import { QBtn as SomeComponent, Notify } from 'quasar'
11+
import { Notify, QBtn as SomeComponent } from 'quasar'
1212
import { defineComponent } from 'vue'
1313
1414
console.log(SomeComponent)

vite-plugin/playground/src/components/js-script/CustomWithImports.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</template>
1010

1111
<script>
12-
import { QBtn, Notify } from 'quasar'
12+
import { Notify, QBtn } from 'quasar'
1313
import { defineComponent } from 'vue'
1414
import CustomComponent from './custom-component.js'
1515

0 commit comments

Comments
 (0)