5d134410
张志伟
🐱 feat(*): init
|
1
2
3
4
5
6
7
8
|
{
"*.{md,json}": ["prettier --cache --write"],
"*.{js,jsx}": ["eslint --color --cache --fix", "prettier --cache --write"],
"*.ts?(x)": [
"eslint --color --cache --fix ",
"prettier --cache --parser=typescript --write"
]
}
|