J'utilise VS Code avec Prettier 1.7.2 et ESLint 1.7.0. Après chaque nouvelle ligne, j'obtiens :
[eslint] Delete `CR` [prettier/prettier]
C'est .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
Fichier :
{ "printWidth": 80, "tabWidth": 2, "semi": true, "singleQuote": true, "trailingComma": "es5", "bracketSpacing": true, "jsxBracketSameLine": false, }
Comment éliminer cette erreur ?
Essayez de définir dans le fichier
(ou .prettierrc.json) (à l'intérieur de l'objet)"endOfLine":"auto"
.prettierrcou paramètres
À l'intérieur de l'objet du fichier eslintrc
rules
.Si vous utilisez une machine Windows,
endOfLine
peut être "crlf" en fonction de votre configuration git.