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.
14 lines
390 B
14 lines
390 B
{
|
|
"*.{md,json}": ["prettier --cache --write"],
|
|
"*.{js,jsx}": ["max lint --fix --eslint-only", "prettier --cache --write"],
|
|
"*.{css,less}": [
|
|
"max lint --fix --stylelint-only",
|
|
"prettier --cache --write"
|
|
],
|
|
"*.ts?(x)": [
|
|
"max lint --fix --eslint-only",
|
|
"prettier --cache --parser=typescript --write"
|
|
],
|
|
"src/locales/**/*.ts": ["npx tsx src/locales/check.ts"]
|
|
}
|