Skip to content

Commit

Permalink
🎉 project init
Browse files Browse the repository at this point in the history
  • Loading branch information
thinktapper committed Nov 20, 2022
1 parent 3c1423d commit dc60f35
Show file tree
Hide file tree
Showing 5 changed files with 1,065 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# OS
**/*.DS_Store*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Logs
logs
*.log
Expand Down Expand Up @@ -71,6 +78,7 @@ typings/
# dotenv environment variables file
.env
.env.test
.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
Expand Down
17 changes: 17 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"trailingComma": "all",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"bracketSpacing": true,
"bracketSameLine": true,
"arrowParens": "always",
"overrides": [
{
"files": "*.html",
"options": {
"tabWidth": 4
}
}
]
}
Loading

0 comments on commit dc60f35

Please sign in to comment.