next-app-boilerplate/.lintstagedrc

13 lines
179 B
Plaintext
Raw Normal View History

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