Почему я продолжаю получать Delete 'cr' [красивее / красивее]? - PullRequest
0 голосов
/ 28 ноября 2018

Я использую vscode с Prettier 1.7.2 и Eslint 1.7.0.После каждой новой строки я получаю:

[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,
}

Как мне от этого избавитьсяошибка?

Ответы [ 3 ]

0 голосов
/ 16 января 2019

изменить эту настройку в VSCode.

enter image description here

0 голосов
/ 06 мая 2019

Я использую git + vscode + windows + vue и после прочтения документа eslint: https://eslint.org/docs/rules/linebreak-style

Наконец исправьте это:

добавьте *.js text eol=lf в .gitattributes

затем запустить vue-cli-service lint --fix

0 голосов
/ 13 декабря 2018

Попробуйте установить "endOfLine":"auto" в вашем файле .prettierrc (внутри объекта)

Или установить

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

внутри объекта правил файла eslintrc.

Если вы используете Windows, машина endOfLine может быть "crlf" на основе вашего git config.

...