Almost all of the files in the template are formatted with Prettier, which is great because it means that further edits won't introduce formatting changes. However, at least one tsconfig.json isn't:
|
"lib": [ |
|
"dom", |
|
"dom.iterable", |
|
"esnext" |
|
], |
Prettier wants to wrap this array to a single line (plus additional changes below). Other templates may be affected; template-nextjs-authkit was just the one I was using.
Would it be possible to add checks to this repo to ensure that all files remain formatted with Prettier?
Almost all of the files in the template are formatted with Prettier, which is great because it means that further edits won't introduce formatting changes. However, at least one
tsconfig.jsonisn't:templates/template-nextjs-authkit/tsconfig.json
Lines 4 to 8 in de15ee3
Prettier wants to wrap this array to a single line (plus additional changes below). Other templates may be affected; template-nextjs-authkit was just the one I was using.
Would it be possible to add checks to this repo to ensure that all files remain formatted with Prettier?