In this repo you'll find various code convention guideline files (and some .ignore stuff). Most of my projects will use at least one of these but I strive to use as many as I can.
note these are by no means definitive. Every project has different needs, treat these files as a starting point.
.
├── legacy
│ ├── prettier
│ │ ├── index.js
│ │ └── package.json
│ ├── eslint.config.js
│ └── .stylelintrc
├── biome.json
├── .dockerignore // things to ignore when building dockers
├── .editorconfig // default editor configuration
├── .gitignore // files to ignore when working with git
├── LICENSE
└── README.md
My preferred prettier configuration has also been packaged as an npm package. For instructions see: prettier.md