fix package.json scripts

This commit is contained in:
poma 2020-10-15 02:30:51 +03:00
parent 49f48299f5
commit b0e25e800f
No known key found for this signature in database
GPG Key ID: BA20CB01FE165657
1 changed files with 2 additions and 2 deletions

View File

@ -5,8 +5,8 @@
"main": "index.js",
"scripts": {
"eslint": "eslint --ext .js --ignore-path .gitignore .",
"prettier:check": "npx prettier --check . --config .prettierrc",
"prettier:fix": "npx prettier --write . --config .prettierrc",
"prettier:check": "prettier --check . --config .prettierrc",
"prettier:fix": "prettier --write . --config .prettierrc",
"lint": "yarn eslint && yarn prettier:check",
"test": "mocha --timeout 300000"
},