Skip to content

Commit

Permalink
disable stylelint until vitejs/vite#6705 merged
Browse files Browse the repository at this point in the history
  • Loading branch information
ksevelyar committed Apr 15, 2022
1 parent f6e9fe4 commit 1c2ff67
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -8,7 +8,7 @@
"preview": "vite preview",
"lint-js": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"lint-css": "stylelint src",
"lint": "npm run lint-js && npm run lint-css",
"lint": "npm run lint-js # npm run lint-css",
"test": "vitest run",
"coverage": "vitest run --coverage"
},
Expand Down
2 changes: 1 addition & 1 deletion src/App.vue
Expand Up @@ -2,7 +2,7 @@
<router-view />
</template>

<style lang="sss">
<style>
@font-face font-family: "Overpass"
src: url('@/assets/overpass-regular.woff2') format("woff2")
Expand Down
2 changes: 1 addition & 1 deletion src/components/UserCard.vue
Expand Up @@ -16,7 +16,7 @@ export default {
}
</script>

<style lang="sss">
<style>
.user-card__image
width: 200px
height: 200px
Expand Down
2 changes: 1 addition & 1 deletion src/views/UserLogin.vue
Expand Up @@ -13,7 +13,7 @@ export default {
}
</script>
<style lang="sss">
<style>
.home
display: flex
align-items: center
Expand Down
2 changes: 1 addition & 1 deletion src/views/UserProfile.vue
Expand Up @@ -14,7 +14,7 @@ export default {
}
</script>

<style lang="sss">
<style>
.user
display: flex
align-items: center
Expand Down
2 changes: 1 addition & 1 deletion src/views/UserReport.vue
Expand Up @@ -25,7 +25,7 @@ const report = reactive({
})
</script>

<style lang="sss">
<style>
.report
display: flex
flex-direction: column
Expand Down

0 comments on commit 1c2ff67

Please sign in to comment.