feat(stylelint): 取消检测 no-empty-source

This commit is contained in:
Burt 2024-01-22 09:18:49 +08:00
parent ef0eb25cd7
commit 1093c27e13
2 changed files with 3 additions and 6 deletions

View File

@ -44,5 +44,6 @@ module.exports = {
],
'comment-empty-line-before': 'never',
'custom-property-empty-line-before': 'never',
'no-empty-source': null,
},
}

View File

@ -1,12 +1,8 @@
<template>
<div class="niubi">niubi</div>
<div class="niubi bg-red-600">niubi</div>
<div class="niubi">通过 /pages-sub/niubi/index 访问</div>
</template>
<script lang="ts" setup></script>
<style lang="scss" scoped>
.niubi {
background-color: red;
}
</style>
<style lang="scss" scoped></style>