13 lines
256 B
JSON
13 lines
256 B
JSON
{
|
|
"src/*.{json,less}": [
|
|
"prettier --write --config ./.prettierrc.json"
|
|
],
|
|
"./**/*.js": [
|
|
"prettier --write --config ./.prettierrc.json"
|
|
],
|
|
"./**/*.{ts,tsx}": [
|
|
"eslint --fix",
|
|
"prettier --write --config ./.prettierrc.json"
|
|
]
|
|
}
|