A collection of custom ESLint rules for qBittorrent WebUI.
- Add the plugin
npm install --save-dev https://github.com/Chocobo1/eslint-plugin-qbt-webui/tarball/v1- Load the rules
// eslint.config.mjs
import PluginQbtWebUI from "eslint-plugin-qbt-webui";
export default [{
plugins: {
PluginQbtWebUI
},
rules: {
// find the list of rules in `lib/rules/index.ts`
"PluginQbtWebUI/prefix-inc-dec-operators": "error"
}
}];- Done!