feat(formatting): add .prettierignire, .prettierrc + update packageer files

This commit is contained in:
Toby
2024-05-15 09:51:40 +00:00
committed by GitHub
parent 391fc263c5
commit 015c430209
4 changed files with 2613 additions and 1 deletions
+28
View File
@@ -0,0 +1,28 @@
# All files/folders to be ignored by Prettier
# Ignore all markdown files as these are broken by formatting (working on a fix for this)
*.md
# I have included everything in this document, just comment files & directories
# you wish to have formatted - remove the hash from the line you wish to un-ingore
#.github/
#domains/
#mesia/
#node_modules/
#scripts/
#tests/
#utils/
#.env.example
#.envrc
#.eslintrc.json
#.gitignore
#.prettierrc
#bun.lockb
#default.nix
#docker-compose.yml
#Dockerfile
#LICENSE
#package-lock.json
#package.json
+4
View File
@@ -0,0 +1,4 @@
{
"useTabs": false,
"tabWidth": 2
}
+2579
View File
File diff suppressed because it is too large Load Diff
+2 -1
View File
@@ -22,6 +22,7 @@
"devDependencies": {
"eslint": "^7.11.0",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-node": "^11.1.0"
"eslint-plugin-node": "^11.1.0",
"prettier": "3.2.5"
}
}