eslint@9, prettier (#105)

* Update build.yml to allow pushes to any branch

Remove branch restriction for push events, which prevents forked projects from running CI checks prior to creating a PR.

* eslint, prettier config only
This commit is contained in:
Scott Anderson
2026-08-02 02:43:54 -04:00
committed by GitHub
parent 2e0ff5a10c
commit 9478f7d0f5
15 changed files with 2352 additions and 2124 deletions

13
prettier.config.mjs Normal file
View File

@@ -0,0 +1,13 @@
export default {
arrowParens: 'avoid',
bracketSpacing: true,
endOfLine: 'auto',
jsxBracketSameLine: false,
jsxSingleQuote: true,
plugins: ['prettier-plugin-tailwindcss'],
printWidth: 80,
semi: false,
singleQuote: true,
tabWidth: 2,
trailingComma: 'all',
}