diff --git a/package.json b/package.json index 15c4c44..80fda21 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "private": true, "scripts": { "preinstall": "npx only-allow pnpm", - "lint": "npx eslint --ext .js,.json,.vue,.md .", + "lint": "eslint .", "release": "lerna publish --conventional-commits" }, "devDependencies": { diff --git a/packages/basic/index.js b/packages/basic/index.js index 901f5ab..ec41cad 100644 --- a/packages/basic/index.js +++ b/packages/basic/index.js @@ -20,6 +20,8 @@ module.exports = { 'public', 'temp', '!.vitepress', + '!.github', + '!.vscode', ], plugins: [ 'html', @@ -266,5 +268,8 @@ module.exports = { allowSeparatedGroups: false, }, ], + + // yml + 'yml/quotes': ['error', { prefer: 'single', avoidEscape: false }], }, }