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,
}
このエラーを取り除くにはどうすればよいですか?
.prettierrcファイル(オブジェクト内)で"endOfLine":"auto"
を設定してみてください
または設定
"prettier/prettier": ["error", {
..
"endOfLine":"auto"
..
}],
eslintrcファイルのルールオブジェクト内。
Windowsマシンを使用している場合、endOfLineはgit configに基づいて「crlf」にすることができます。
Git + vscode + windows + vueを使用しており、eslintドキュメントを読んだ後: https://eslint.org/docs/rules/linebreak-style
最後に修正します:
*.js text eol=lf
を.gitattributes
に追加します
次にvue-cli-service lint --fix
を実行します