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