Server/.gitignore
Refringe 79781ab8bb Linting Updates (!336)
This update now runs Prettier before ESLint (with the Stylistic plugin) for code formatting. This takes care of a lot of the edge cases that ESLint doesn't touch by itself. Also adds the `eslint-plugin-unused-imports` ESLint plugin to remove unused imports and the `eslint-plugin-switch-allman` ESLint plugin to enforce Allman braces on case declarations.

The VSCode format-on-save function now requires two additional extentions to be installed: Prettier and Format Code Action. Links can be found in the README and in the recommended extentions section of VSCode when the workspace is open.

Co-authored-by: chomp <chomp@noreply.dev.sp-tarkov.com>
Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/336
Co-authored-by: Refringe <me@refringe.com>
Co-committed-by: Refringe <me@refringe.com>
2024-05-16 08:41:05 +00:00

47 lines
509 B
Plaintext

## SPT-AKI
*.exe
*.zip
*.d.ts
project/build/
project/obj/
project/dist/
project/user/
project/logs/
project/Aki_Data/
project/tmp/
project/docs/
project/types/
project/tests/__cache__/
project/tests/__coverage__/
project/src/__coverage__/
## visual studio
.vs
.idea
.vscode
slnx.sqlite
slnx-journal.sqlite
## nodejs
package-lock.json
node_modules
node.exe
pnpm-lock.yaml
yarn.lock
## windows
desktop.ini
## parcel
.parcel-cache/
## Pkg
.pkg-cache
## yarn
**/yarn-error.log
#jest
coverage
.scannerwork/