lbry-desktop/.lintstagedrc.json
Igor Gassmann 232c1d8109
fix: re-enable flow type checking for the project (#1197)
Flow wasn't working anymore. This fixes flow type checking and it to the git precommit hook.
2018-04-25 17:20:59 -04:00

14 lines
221 B
JSON

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