You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
396 B

{
"*.{ts,tsx}": [
"eslint --ext .ts,.tsx --fix",
"prettier --single-quote --write",
"git add"
],
"{.{babelrc,eslintrc,prettierrc,stylelintrc}}": [
"prettier --parser json --write",
"git add"
],
"*.less": [
"stylelint --syntax scss --fix",
"prettier --single-quote --write",
"git add"
],
"*.{yml,md}": ["prettier --single-quote --write", "git add"]
}