Nuxt 中的 Stylelint 错误(基于class):意外的空源(无空源)

Stylelint error in Nuxt (class based): Unexpected empty source (no-empty-source)

我的两个组件突然出现这个 Stylelint 错误,我不知道为什么。

Unexpected empty source (no-empty-source)

我创建了第三个组件并将内容删除到没有剩余内容的地步,但该组件的错误仍然显示。 那么问题是什么? 我试图理解 this eslint 文档页面,但我不太理解它,它没有解释什么是“源”。

这里是简化的组件(项目中没有用到):

<template>
  <p>ok</p>
</template>

<script lang="ts">
import { Component, Vue } from 'nuxt-property-decorator';
@Component
export default class NewComponent extends Vue {}
</script>

<style lang="postcss" scoped></style>

我得到:

components/common/NewComponent.vue
 12:31  ×  Unexpected empty source   no-empty-source

问题的发生是因为有一个空的 style 标签,删除它解决了问题。