我创建了一个默认的 Nuxt 项目,并为该项目选择了 ESLint 和 Prettier。我打开了应用程序,并按下了重新格式化代码的快捷键。当我运行 nuxt 项目时,ESLint 在 index.vue 页面上显示缩进错误。
这是 ESLint、EditorConfig 和 index.vue 代码。
ESLint:
module.exports = {
root: true,
env: {
browser: true,
node: true
},
parserOptions: {
parser: 'babel-eslint'
},
extends: [
'plugin:vue/recommended',
'plugin:prettier/recommended'
],
// required to lint *.vue files
plugins: [
'vue',
'prettier'
],
// add your custom rules here
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
}
}
编辑器配置:
# editorconfig.org
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.md]
trim_trailing_whitespace = false
索引.vue:
<template>
<section class="container">
...
</section>
</template>
<script>
import Logo from '~/components/Logo.vue'
export default {
components: {
Logo
}
}
</script>
<style>
.container {
min-height: 100vh;
...
}
...
</style>
所以错误是针对<script>...</script>
and<style>...</style>
部分的。有人可以指导我如何让 ESLint 与 EditorConfig 缩进一起工作吗?如果有帮助,我将使用 Webstorm 作为 IDE。