web-dev-qa-db-ja.com

Delete 'cr' [きれい/きれい]を取得し続けるのはなぜですか?

Prettier 1.7.2およびEslint 1.7.0でvscodeを使用しています。すべての改行の後、私は得る:

[eslint] Delete 'cr' [prettier/prettier]

これは.eslintrc.jsonです:

{
"extends": ["airbnb", "plugin:prettier/recommended"],
"env": {
"jest": true,
"browser": true
},
"rules": {
"import/no-extraneous-dependencies": "off",
"import/prefer-default-export": "off",
"no-confusing-arrow": "off",
"linebreak-style": "off",
"arrow-parens": ["error", "as-needed"],
"comma-dangle": [
"error",
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "ignore"
}
],
"no-plusplus": "off"
},
"parser": "babel-eslint",
"plugins": ["react"],
"globals": {
"browser": true,
"$": true,
"before": true,
"document": true
}
}

.prettierrc

{
    "printWidth": 80,
    "tabWidth": 2,
    "semi": true,
    "singleQuote": true,
    "trailingComma": "es5",
    "bracketSpacing": true,
    "jsxBracketSameLine": false,
}

このエラーを取り除くにはどうすればよいですか?

15
bier hier

.prettierrcファイル(オブジェクト内)で"endOfLine":"auto"を設定してみてください

または設定

"prettier/prettier": ["error", {
     ..
    "endOfLine":"auto"
     ..
  }],

eslintrcファイルのルールオブジェクト内。

Windowsマシンを使用している場合、endOfLineはgit configに基づいて「crlf」にすることができます。

25
Vah Run

vSCodeでこの設定を変更します。

enter image description here

14
xudong zhang

Git + vscode + windows + vueを使用しており、eslintドキュメントを読んだ後: https://eslint.org/docs/rules/linebreak-style

最後に修正します:

*.js text eol=lf.gitattributesに追加します

次にvue-cli-service lint --fixを実行します

1
Waket Zheng