"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --exec babel-node index.js",
"start": "node index.js",
"prettier": "prettier --write **/*.js"
当我运行 npm run prettier 时,只有第一层文件被美化。 在Windows上可以正常工作,但在linux上则不能工作。
在Windows上
在Linux上
我想整理所有.js文件。我该怎么办?