“source.fixAll.eslint”: true
}
}
4. 效果
![在这里插入图片描述](https://img-blog.csdnimg.cn/direct/7c4d3c1302e94604a3413581159a644f.png#pic_center)
由于 `ESLint` 已经配置了代码格式化,所以没有必要使用 `Prettier` 来重复这个功能。要格式化代码,你可以运行 `yarn lint --fix`、`pnpm lint --fix` 或 `bun run lint --fix`,或者参考 `ESLint` 部分中的 `IDE` 设置。
如果你的编辑器中安装了 `Prettier`,请在项目中工作时禁用它,以避免冲突。
注意:[我们正在讨论]( )在将来启用 `Prettier`。
### 配置 Stylelint
1. 执行安装命令
pnpm add stylelint @nuxtjs/stylelint-module stylelint-config-standard stylelint-order stylelint-config-recommended-vue -D
2. 配置 `nuxt.config.ts`:
modules: [
// Simple usage
‘@nuxtjs/stylelint-module’,
// With options
[‘@nuxtjs/stylelint-module’, { /* module options */ }]
]
3. 新增 `.stylelintrc.cjs` 文件,