使用ESlint警告:Require self-closing on Vue.js custom components

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用ESlint警告:Require self-closing on Vue.js custom components相关的知识,希望对你有一定的参考价值。

参考技术A

解决方式:配置eslintrc.js;添加配置内容如下: ;参考文章[# 关于nuxt报错Require self-closing on html elements (<div>) vue/html-self-closing的解决方法
]

require-yield (Rules) – Eslint 中文开发手册 - Break易站

[
  • ??Eslint 中文开发手册

    require-yield (Rules) - Eslint 中文开发手册

    "extends": "eslint:recommended"配置文件中的属性启用此规则。

    规则细节

    此规则会为没有yield关键字的生成器函数生成警告。

    示例

    此规则的错误代码示例:

    /*eslint require-yield: "error"*/
    /*eslint-env es6*/
    
    function* foo() {
      return 10;
    }

    此规则的正确代码示例:

    /*eslint require-yield: "error"*/
    /*eslint-env es6*/
    
    function* foo() {
      yield 5;
      return 10;
    }
    
    function foo() {
      return 10;
    }
    
    // This rule does not warn on empty generator functions.
    function* foo() { }

    何时不使用它

    如果您不想通知没有yield表达式的生成器函数,那么禁用此规则是安全的。

    相关规则

    require-awaitVersion此规则在ESLint 1.0.0-rc-1.Resources中引入规则来源文档来源

  • ??Eslint 中文开发手册
    ]
    转载请保留页面地址:https://www.breakyizhan.com/javascript/34562.html

    以上是关于使用ESlint警告:Require self-closing on Vue.js custom components的主要内容,如果未能解决你的问题,请参考以下文章

    vue3使用中VsCode 报 v-model directives require no argument 警告

    带有 syntastic 和 eslint 的 vim:显示警告

    JSX 道具不应使用箭头函数 eslint 警告 [重复]

    使用 .eslintrc.js 将所有 eslint 错误更改为警告而不是错误

    设置 ESLINT 以忽略“额外分号”等警告

    VUE_TS项目中类型使用any 报警告Unexpected any. Specify a different type.eslint@typescript-eslint/no-explicit-an