摘要: https://www.jianshu.com/p/fd80006844c1 阅读全文
posted @ 2021-12-19 21:10 Dz&Ying 阅读(96) 评论(0) 推荐(0)
摘要: VSCode中如何配置 Prettier - Code formatter 添加自定义配置文件.prettierrc { "singleQuote": true, "trailingComma": "es5", "printWidth": 140, "overrides": [ { "files": 阅读全文
posted @ 2021-12-19 21:04 Dz&Ying 阅读(303) 评论(0) 推荐(0)
摘要: let fs = require('fs') // 引入fs模块 function deleteall(path) { let files = [] if (fs.existsSync(path)) { files = fs.readdirSync(path) files.forEach(funct 阅读全文
posted @ 2021-12-19 18:52 Dz&Ying 阅读(517) 评论(0) 推荐(0)