mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-05 23:22:31 -06:00
For unknown reasons, ESLint v9 doesn't work correctly. Migration to ESLint v9 will be done later when it is stable enough. PR #20665.
23 lines
733 B
JSON
23 lines
733 B
JSON
{
|
|
"name": "webui",
|
|
"description": "qBittorrent WebUI",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/qbittorrent/qBittorrent.git"
|
|
},
|
|
"scripts": {
|
|
"format": "js-beautify private/*.html private/scripts/*.js private/views/*.html public/*.html public/scripts/*.js && prettier --write **.css",
|
|
"lint": "eslint private/*.html private/scripts/*.js private/views/*.html public/*.html public/scripts/*.js && stylelint **/*.css && html-validate private public"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8",
|
|
"eslint-plugin-html": "^8",
|
|
"html-validate": "*",
|
|
"js-beautify": "*",
|
|
"prettier": "*",
|
|
"stylelint": "*",
|
|
"stylelint-config-standard": "*",
|
|
"stylelint-order": "*"
|
|
}
|
|
}
|