मैं प्रेट्रियर 1.7.2 और एस्लिंट 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
फ़ाइल नहीं । पता नहीं क्यों या क्या अंतर है (मैं ओपी पर सभी टैग के लिए नया हूं)।