13 lines
165 B
JSON
13 lines
165 B
JSON
|
{
|
||
|
"linters": {
|
||
|
"src/**/*.{js,json}": [
|
||
|
"prettier --write",
|
||
|
"git add"
|
||
|
],
|
||
|
"src/**/*.js": [
|
||
|
"eslint --fix",
|
||
|
"git add"
|
||
|
]
|
||
|
}
|
||
|
}
|