方案一 :重命名(亲测有效) 文件的名称重命名 重新命名组件名为驼峰命名方式或者用“-”连接单词的格式 这样问题就解决啦~~~ 示例如下: 方案二 :配置vue.config.js 文件(网上方法,本人使用无效) 在根目录下找到vue.config.js文件(如果没有则新建一个,按照示例中的代码进行添加;用 vue-cli 脚手架进行创建的项...
推荐后者,因为 config 没有必要检查啦... 另外,要小心这个 ignores 坑 --Github – Having issues with ignores in v9 ignores 必须单独一个对象,不可以和其它 (e.g. files) 属性放在一起,不然会失灵。 结合Prettier ESLint 还可以结合 Prettier 来使用。这个结合需要特别解释一下,不然会有点乱。 有2 种结...
(win mac 不一致) } ], 'vue/multi-word-component-names': [ 'warn', { ignores: ['index'] // vue组件名称多单词组成(忽略index.vue) } ], 'vue/no-setup-props-destructure': ['off'], // 关闭 props 解构的校验 // 💡 添加未定义变量错误提示,create-vue@3.6.3 关闭,这里加上是为了...
创建.eslintrc.js文件放到项目根目录下即可 module.exports = { root: true,//此项是用来告诉eslint找当前配置文件不能往父级查找 //此项是用来指定javaScript语言类型和风格,sourceType用来指定js导入的方式,默认是script,此处设置为module,指某块导入方式 parserOptions: { parser: 'babel-eslint', sourceType: ...
{ ignores }, { files: ['**/*.ts', '**/*.tsx', '**/*.mts', '**/*.cts'], languageOptions: { parser: typescriptEslintParser, parserOptions: { project: 'tsconfig.json', createDefaultProgram: true, sourceType: 'module' }, globals: languageGlobalsOptions }, settings, plugins: { ...
{ignores: ['index'] //需要忽略的组件名}],// 设置每行最大属性数'vue/max-attributes-per-line': [2,{singleline: 10, // 标签为单行时,每行最大属性数值为 10,默认值为 1multiline: {max: 1 // 标签为多行时,每行最大属性数字为 1,默认值为 1}}],// 在单行元素的内容之前和之后需要...
Search code, repositories, users, issues, pull requests... Provide feedback We read every piece of feedback, and take your input very seriously. Include my email address so I can be contacted Cancel Submit feedback Saved searches Use saved searches to filter your results more quickly Ca...
如果两个都不使用,那么错误仍然会被捕获,但只显示在控制台输出中。因此,取决于您的任务流程和设计,...
// 添加组件命名忽略规则 "vue/multi-word-component-names": ["error",{ "ignores": ["Home","User"] //在这个数组中加入需要忽略的组件名 }] 推荐使用方案三,极力推荐!!! 示例如下: 非常重要的注意点:(重启项目,配置文件才生效) 在运行的项目中,修改配置文件,必须先将项目在 终端 两次点击 Ctrl+C ...
// 添加组件命名忽略规则 "vue/multi-word-component-names": ["error",{ "ignores": ["Home","User"] //在这个数组中加入需要忽略的组件名 }] 推荐使用方案三,极力推荐!!! 示例如下: 非常重要的注意点:(重启项目,配置文件才生效) 在运行的项目中,修改配置文件,必须先将项目在 终端 两次点击 Ctrl+C ...