11 lines
244 B
JSON
11 lines
244 B
JSON
{
|
|
"*": ["editorconfig-checker"],
|
|
"*.{js,ts,jsx,tsx}": [
|
|
"prettier --write",
|
|
"eslint --fix",
|
|
"jest --findRelatedTests"
|
|
],
|
|
"*.{css,yml,json}": ["prettier --write"],
|
|
"*.md": ["prettier --write", "markdownlint --dot --fix"]
|
|
}
|