【发布时间】:2021-05-05 05:40:53
【问题描述】:
我查看了 Prettier 的文档并进行了大量搜索,但无法弄清楚如何按照我想要的方式配置 angular html 文件。如果元素不超过一行的最大字符数,我希望元素位于一行,但如果它确实超过了最大值,那么我希望每行只有一个属性,如下所示。
所需格式:
<app-example-component [attribute1]="attribute1"></app-example-component>
<app-example-component
[attribute1]="attribute1"
[attribute2]="attribute2"
[attribute3]="attribute3"
[attribute4]="attribute4"
></app-example-component>
这是我目前得到的,我觉得很难阅读:
<app-example-component [attribute1]="attribute1" [attribute2]="attribute2"
[attribute3]="attribute3" [attribute4]="attribute4"
[attribute3]="attribute3" [attribute4]="attribute4"
[attribute3]="attribute3"></app-example-component>
我正在使用 VS Code,最近将我的 Angular 项目转换为使用 ESLint 而不是 TSLint,但在此之前我没有使用 Prettier,所以我不知道这种转换是否会导致问题。
这是我的 .eslintrc.json 文件。也许这对我来说破坏了 Prettier?
{
"root": true,
"ignorePatterns": [
"projects/**/*"
],
"overrides": [
{
"files": [
"*.ts"
],
"parserOptions": {
"project": [
"tsconfig.json",
"e2e/tsconfig.json"
],
"createDefaultProgram": true
},
"extends": [
"plugin:@angular-eslint/ng-cli-compat",
"plugin:@angular-eslint/ng-cli-compat--formatting-add-on",
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"@typescript-eslint/consistent-type-definitions": "error",
"@typescript-eslint/dot-notation": "off",
"@typescript-eslint/explicit-member-accessibility": [
"off",
{
"accessibility": "explicit"
}
],
"id-blacklist": "off",
"id-match": "off",
"no-underscore-dangle": "off"
}
},
{
"files": [
"*.html"
],
"extends": [
"plugin:@angular-eslint/template/recommended"
],
"rules": {}
}
]
}
代码/用户/settings.jsons:
{
"editor.tabSize": 2,
"editor.detectIndentation": false,
"html.format.endWithNewline": true,
"editor.linkedEditing": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
【问题讨论】:
标签: angular visual-studio-code eslint prettier