txw/txw-mhzc-web/.eslintrc.js
2026-04-05 15:05:13 +08:00

13 lines
293 B
JavaScript

module.exports = {
root: true,
extends: [],
rules: {
// 关闭所有校验
"prettier/prettier": "off",
"all": "off",
"no-undef": "off",
"no-unused-vars": "off",
"stylelint/no-unknown-property": "off",
"declaration-property-value-disallowed-list": "off"
}
};