fix(eslint-config): remove prettier extends (#9222)

This commit is contained in:
neverland 2021-08-10 10:32:13 +08:00 committed by GitHub
parent 57352801d9
commit 9e55e28a43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 380 additions and 361 deletions

View File

@ -43,7 +43,7 @@
"@docsearch/css": "3.0.0-alpha.33",
"@docsearch/js": "3.0.0-alpha.33",
"@types/webpack-dev-server": "^3.11.4",
"@vant/eslint-config": "^3.2.0",
"@vant/eslint-config": "^3.3.2",
"@vant/markdown-loader": "^4.1.0",
"@vant/markdown-vetur": "^2.2.0",
"@vant/stylelint-config": "^1.4.2",

View File

@ -25,7 +25,7 @@ function runCommand(
})
.catch((err: any) => {
spinner.fail(messages.failed);
console.log(err.stdout);
console.log(err.stderr || err.stdout);
resolve(false);
});
});

File diff suppressed because it is too large Load Diff

View File

@ -4,8 +4,6 @@ module.exports = {
'airbnb-base',
'plugin:@typescript-eslint/recommended',
'prettier',
'prettier/vue',
'prettier/@typescript-eslint',
'plugin:markdown/recommended',
],

View File

@ -1,6 +1,6 @@
{
"name": "@vant/eslint-config",
"version": "3.3.1",
"version": "3.3.2",
"description": "eslint config of vant",
"main": "index.js",
"publishConfig": {