prettier格式化代码和eslint缩进规则冲突
请问如何解决prettier格式化完的代码和eslint缩进规则冲突?
.prettierrc
配置:
{
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"arrowParens": "avoid"
}
.eslintrc
配置:
{
"env": {
"es6": true,
"browser": true
},
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"indent": [
"error",
2
],
"quotes": [
"warn",
"single",
{
"allowTemplateLiterals": true
}
],
"arrow-parens": [
"warn",
"as-needed"
],
"comma-spacing": [
"warn",
{
"after": true
}
],
"linebreak-style": [
"error",
"unix"
],
"object-curly-spacing": [
"error",
"always"
],
"@typescript-eslint/semi": [
"warn"
]
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我把格式化代码的方法改成了
prettier --write "**/*.ts" && eslint --fix "**/*.ts"
?