chore: update stylelint config (#2400)

This commit is contained in:
neverland 2019-11-27 11:02:59 +08:00 committed by GitHub
parent 58d1186d5c
commit 784539f88e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 26 additions and 10 deletions

21
.stylelintrc Normal file
View File

@ -0,0 +1,21 @@
{
"extends": [
"@vant/stylelint-config"
],
"rules": {
"unit-no-unknown": [
true,
{
"ignoreUnits": "/rpx/"
}
],
"selector-type-no-unknown": [
true,
{
"ignoreTypes": [
"/page/"
]
}
]
}
}

View File

@ -1,12 +1,12 @@
page {
color: #333;
font-size: 16px;
background: #f2f3f5;
min-height: 100vh;
box-sizing: border-box;
min-height: 100vh;
padding: 0 0 100rpx;
color: #323233;
font-size: 16px;
font-family: 'PingFang SC', Helvetica, Arial, sans-serif;
background: #f7f8fa;
-webkit-font-smoothing: antialiased;
font-family: 'PingFang SC', Helvetica, 'STHeiti STXihei', 'Microsoft YaHei', Tohoma, Arial, sans-serif;
}
.demo-margin-left {

View File

@ -81,11 +81,6 @@
"webpack-cli": "^3.3.6",
"webpack-serve": "^2.0.3"
},
"stylelint": {
"extends": [
"@vant/stylelint-config"
]
},
"prettier": {
"singleQuote": true
},