我刚刚设置了我的开发环境,使用新安装的 linter & prettier for Vue.js & NUXTJS 我检查了我的配置
npx eslint --print-config ./pages/index.vue | npx eslint-config-prettier-check
和
没有发现不必要的或与 Prettier 冲突的规则。
当我写如下内容和 eslint 弹出窗口并说,嘿,更漂亮的不希望你这样做时,有人知道为什么吗?在这种情况下,我不想让 linter 忽略,因为这种风格在我的代码中似乎很常见。任何帮助,将不胜感激!
错误:
代码:
<h2 class="subtitle">
123 {{ env }} 123
</h2>
<h2 class="subtitle">
{{ env }}
</h2>
<h1 class="title">
reborn
</h1>
我的 .eslintrc.js 如下所示:
module.exports = {
root: true,
env: {
browser: true,
node: true
},
parserOptions: {
parser: 'babel-eslint'
},
plugins: ['prettier', 'vue'],
rules: {
'vue/component-name-in-template-casing': ['error', 'PascalCase'],
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debuger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'vue/max-attributes-per-line': 'off',
'nuxt/no-cjs-in-config': 'off'
},
globals: {
$nuxt: true
},
extends: [
'@nuxtjs',
'plugin:prettier/recommended',
'plugin:nuxt/recommended',
'plugin:vue/recommended',
'prettier',
'prettier/babel',
'prettier/vue',
'prettier/unicorn'
]
}