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.

16 lines
509 B

  1. {
  2. "*.{js,jsx,ts,tsx}": [
  3. "prettier --cache --ignore-unknown --write",
  4. "eslint --cache --fix"
  5. ],
  6. "{!(package)*.json,*.code-snippets,.!({browserslist,nvm})*rc}": [
  7. "prettier --cache --write--parser json"
  8. ],
  9. "package.json": ["prettier --cache --write"],
  10. "*.vue": ["prettier --write", "eslint --cache --fix", "stylelint --fix"],
  11. "*.{css,scss,html}": [
  12. "prettier --cache --ignore-unknown --write",
  13. "stylelint --fix"
  14. ],
  15. "*.md": ["prettier --cache --ignore-unknown --write"]
  16. }