next-app-boilerplate/.lintstagedrc

13 lines
179 B
Plaintext
Raw Normal View History

2022-08-13 19:15:49 +01:00
{
2022-08-13 19:20:42 +01:00
"*": [
"editorconfig-checker"
],
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,jsonc,yml,yaml,md,mdx}": [
"prettier --write"
]
2022-08-13 19:15:49 +01:00
}