lbry-desktop/.lintstagedrc.json

13 lines
180 B
JSON
Raw Normal View History

{
"linters": {
"src/**/*.{js,jsx,scss,json}": [
"prettier --write",
"git add"
],
"src/**/*.{js,jsx}": [
"eslint --fix",
"git add"
]
}
}