prettier md demo (#16188)

This commit is contained in:
陈帅
2019-04-21 14:58:19 +08:00
committed by zombieJ
parent 2b0723f7cb
commit 1569ab329d
4 changed files with 5 additions and 7 deletions

View File

@@ -1,7 +1,4 @@
**/*.md
**/*.svg
**/*.ejs
**/*.html
package.json
.umi
.umi-production

View File

@@ -2,6 +2,7 @@
"singleQuote": true,
"trailingComma": "all",
"printWidth": 100,
"proseWrap": "never",
"overrides": [
{
"files": ".prettierrc",
@@ -10,4 +11,4 @@
}
}
]
}
}

View File

@@ -153,7 +153,7 @@
"pre-commit": "^1.2.2",
"preact": "^8.3.1",
"preact-compat": "^3.18.4",
"prettier": "^1.15.3",
"prettier": "^1.17.0",
"querystring": "^0.2.0",
"rc-queue-anim": "^1.6.6",
"rc-scroll-anim": "^2.5.7",
@@ -262,4 +262,4 @@
"lib/**/style/*",
"*.less"
]
}
}

View File

@@ -36,7 +36,7 @@ if (program.pre) {
];
// get all ts, js, less files
['**/*.ts*', '**/*.js*', '**/*.less'].forEach(pattern => {
['**/*.ts*', '**/*.js*', '**/*.less', '**/*.md', '**/*.html'].forEach(pattern => {
const matchFiles = glob.sync(pattern, {
ignore: ignoreFiles,
});