lbry-redux/.lintstagedrc.json

13 lines
165 B
JSON
Raw Normal View History

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