Skip to content

Commit

Permalink
chore(deps): 🚨 Fix stylelint issues when parsing index.html.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jisu-Woniu committed Nov 21, 2023
1 parent cf64af9 commit 110940c
Show file tree
Hide file tree
Showing 3 changed files with 156 additions and 177 deletions.
7 changes: 6 additions & 1 deletion .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
{
"extends": ["stylelint-config-standard", "stylelint-config-recommended-vue"]
"extends": [
"stylelint-config-standard",
"stylelint-config-html",
"stylelint-config-recommended-vue",
"stylelint-prettier/recommended"
]
}
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"build-only": "vite build",
"dev": "vite",
"format": "prettier --write .",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"lint": "run-p lint:eslint lint:stylelint",
"lint:eslint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"lint:stylelint": "stylelint \"**/*.{css,vue,html}\" --fix --ignore-path .gitignore",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "tauri dev",
Expand All @@ -27,7 +29,7 @@
"@iconify-json/ic": "^1.1.14",
"@mdi/js": "^7.3.67",
"@tauri-apps/cli": "^1.5.6",
"@types/node": "^20.9.2",
"@types/node": "^20.9.3",
"@vitejs/plugin-vue": "^4.5.0",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
Expand All @@ -41,12 +43,13 @@
"postcss-preset-env": "^9.3.0",
"prettier": "^3.1.0",
"stylelint": "^15.11.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-prettier": "^4.0.2",
"typescript": "^5.3.2",
"unplugin-icons": "^0.17.4",
"vite": "^5.0.0",
"vite-plugin-vuetify": "^1.0.2",
"vue-tsc": "^1.8.22"
},
"browserslist": [
Expand Down
Loading

0 comments on commit 110940c

Please sign in to comment.