chore: configure prettier to mind its own business
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I446dc88e7dab36f8955338d650b85ac46a6a6964
This commit is contained in:
parent
f25cfa3e7e
commit
91119c8774
2 changed files with 35 additions and 0 deletions
28
.prettierignore
Normal file
28
.prettierignore
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
# Dependencies
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# Build output
|
||||||
|
dist/
|
||||||
|
|
||||||
|
# Generated types
|
||||||
|
.astro/
|
||||||
|
|
||||||
|
# Misc
|
||||||
|
.DS_Store
|
||||||
|
.env
|
||||||
|
.env.*
|
||||||
|
!.env.example
|
||||||
|
|
||||||
|
# Debugging
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
.pnpm-debug.log*
|
||||||
|
|
||||||
|
# Things handled by other linters
|
||||||
|
*.md
|
||||||
|
*.yaml
|
||||||
|
*.yml
|
||||||
|
*.json
|
||||||
|
!.prettierrc
|
||||||
|
!.package.json
|
||||||
7
.prettierrc
Normal file
7
.prettierrc
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"semi": true,
|
||||||
|
"singleQuote": true,
|
||||||
|
"trailingComma": "es5",
|
||||||
|
"printWidth": 100,
|
||||||
|
"plugins": []
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue