@edwardxyt/gws-cli
Version:
这是一个web脚手架工具,用于生成基于webpack5,生成typescript+react17+mobx5+reactRouter6的应用。初衷是要解决多入口,多环境。单独编译单独运行的脚手架。做到小而美。拒绝锦上添花。
36 lines (35 loc) • 652 B
JSON
{
"extends": ["stylelint-config-standard", "stylelint-config-prettier"],
"plugins": ["stylelint-prettier", "stylelint-order"],
"rules": {
"prettier/prettier": true,
"max-nesting-depth": 4,
"order/order": [
["custom-properties", "declarations"],
{
"disableFix": true
}
],
"order/properties-order": [
"position",
"top",
"right",
"bottom",
"left",
"z-index",
"display",
"float",
"width",
"height"
]
},
"ignoreFiles": [
"**/*.js",
"**/*.ts",
"**/*.tsx",
"**/*.png",
"**/*.svg",
"**/*.jpg",
"**/*.jpeg"
]
}