
Product
Introducing Webhook Events for Pull Request Scans
Add real-time Socket webhook events to your workflows to automatically receive pull request scan results and security alerts in real time.
@dao-style/vue-cli-plugin-lint
Advanced tools
peerDependencies:
"@vue/cli-service": "^5.0.0-0"
usage:
//1.install
vue add #@dao-style/vue-cli-plugin-lint
//2.lint
npm run lint
npm run lint:style
npm run lint:type
npm run lint:es
git add .
npx run lint-staged
//3.commit
npm run commit //利用commitizen 辅助填写提交信息
//或者
// git commit -m '<type>[scope]: <subject>
// [body]
// [footer]'
//符合conventional提交规范
package.json :
{
"scripts":{
"lint:style": "stylelint \"src/**/*.{vue,scss,css}\" --config .stylelintrc.js --fix",
}
"devDependencies":{
"stylelint": "^14.3.0",
"postcss-html": "^1.3.0",
"stylelint-config-recommended-vue": "^1.1.0",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-sass-guidelines": "^9.0.1",
}
}
.stylelintrc.js extends:
stylelint-config-recommended-vue 在最后
[ "stylelint-config-recess-order", "stylelint-config-sass-guidelines", "stylelint-config-recommended-vue", ]
package.json :
{
"scripts":{
"lint:es": "eslint \"src/**/*.{js,jsx,ts,tsx,vue}\" --config .eslintrc.js --fix --max-warnings=0",
}
"devDependencies":{
"eslint": "^8.7.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-vue": "^8.4.0",
"@vue/eslint-config-airbnb": "^6.0.0",
"eslint-plugin-vuejs-accessibility": "^1.1.1",
//ts
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"@vue/cli-plugin-typescript": "~5.0.0-rc.2",
"@vue/eslint-config-typescript": "^9.1.0",
}
}
.eslintrc.js:
{
parserOptions: {
ecmaVersion: 2020,
parser: "@typescript-eslint/parser",
sourceType: "module",
extraFileExtensions: [".vue"],
},
plugins: ["vue", "@typescript-eslint"],
extends: [
"plugin:json/recommended",
"plugin:vue/vue3-recommended",
"@vue/airbnb",
"@vue/typescript/recommended",
],
rules:{
,//https://github.com/typescript-eslint/typescript-eslint/issues/2483
'no-shadow': 'off',
'@typescript-eslint/no-shadow': 'error'
}
}
plugin:vue/vue3-recommended plugin:json/recommended
lint规则:符合conventional提交规范。
commitizen辅助填写提交信息。
package.json :
{
"scripts": {
"commit": "git-cz",
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint",
},
},
"devDependencies": {
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@commitlint/cz-commitlint": "^16.0.0",
"commitizen": "^4.2.4",
},
"gitHooks": {
"commit-msg": "commitlint -E GIT_PARAMS",
},
}
FAQs
**peerDependencies:**
We found that @dao-style/vue-cli-plugin-lint demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Add real-time Socket webhook events to your workflows to automatically receive pull request scan results and security alerts in real time.
Research
The Socket Threat Research Team uncovered malicious NuGet packages typosquatting the popular Nethereum project to steal wallet keys.
Product
A single platform for static analysis, secrets detection, container scanning, and CVE checks—built on trusted open source tools, ready to run out of the box.