lbry-redux/.lintstagedrc.json

13 lines
165 B
JSON
Raw Normal View History

2018-04-05 03:57:29 +01:00
{
"linters": {
2018-04-05 12:54:58 -04:00
"src/**/*.{js,json}": [
2018-04-05 03:57:29 +01:00
"prettier --write",
2018-04-05 11:20:13 -04:00
"git add"
],
2018-04-05 12:54:58 -04:00
"src/**/*.js": [
2018-04-05 03:57:29 +01:00
"eslint --fix",
"git add"
]
}
}