Remove single quote

This commit is contained in:
Nathan Bierema 2020-08-05 09:07:06 -04:00
parent b93b90122c
commit 69c804dbb7

View File

@ -23,7 +23,7 @@
"lint": "eslint \"**/*.{js,jsx}\" --cache", "lint": "eslint \"**/*.{js,jsx}\" --cache",
"lint:fix": "eslint \"**/*.{js,jsx}\" --fix --cache", "lint:fix": "eslint \"**/*.{js,jsx}\" --fix --cache",
"lint:all": "eslint \"**/*.{js,jsx}\"", "lint:all": "eslint \"**/*.{js,jsx}\"",
"prettify": "prettier \"**/*.{js,jsx,json,css,html,md}\" --ignore-path .eslintignore --single-quote --write", "prettify": "prettier \"**/*.{js,jsx,json,css,html,md}\" --write",
"test": "jest --onlyChanged", "test": "jest --onlyChanged",
"test:all": "jest" "test:all": "jest"
}, },
@ -45,12 +45,12 @@
}, },
"lint-staged": { "lint-staged": {
"*.{js,jsx}": [ "*.{js,jsx}": [
"prettier --single-quote --write", "prettier --write",
"yarn lint:fix", "yarn lint:fix",
"git add" "git add"
], ],
"*.{json,css,html,md}": [ "*.{json,css,html,md}": [
"prettier --single-quote --write", "prettier --write",
"git add" "git add"
] ]
} }