2017-12-20 21:05:00 +01:00
|
|
|
{
|
|
|
|
"linters": {
|
2019-11-13 19:14:19 +01:00
|
|
|
"ui/**/*.{js,jsx,scss,json}": ["prettier --write", "git add"],
|
2020-05-07 20:44:11 +02:00
|
|
|
"web/**/*.{js,jsx,scss,json}": ["prettier --write", "git add"],
|
2020-01-28 19:00:45 +01:00
|
|
|
"ui/**/*.{js,jsx}": ["eslint", "flow focus-check --color always", "git add"],
|
2021-07-28 22:10:19 +02:00
|
|
|
"web/**/*.{js,jsx}": ["eslint", "git add"]
|
2020-01-28 19:00:45 +01:00
|
|
|
},
|
2020-05-07 20:44:11 +02:00
|
|
|
"ignore": ["node_modules", "web/dist/**/*", "dist/**/*", "package-lock.json"]
|
2017-12-20 21:05:00 +01:00
|
|
|
}
|