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,
}
이 오류를 어떻게 제거 할 수 있습니까?
.eslintrc
파일 변경은 저에게 효과적이지만 파일은 아닙니다.prettierrc
. 이유 또는 차이점이 무엇인지 알 수 없습니다 (OP의 모든 태그에 익숙하지 않습니다).