add .gitignore and .prettierrc

This commit is contained in:
kevinwatt
2025-02-11 02:46:27 +08:00
parent 47e67ae25a
commit 063fdac80b
2 changed files with 39 additions and 0 deletions

36
.gitignore vendored Normal file
View File

@@ -0,0 +1,36 @@
# Logs
logs
*.log
# Runtime data
pids
*.pid
*.seed
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# node-waf configuration
.lock-wscript
# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
# Dependency directory
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
node_modules
lib
test-dist
docs
# WebStorm
.idea/
dist/

3
.prettierrc Normal file
View File

@@ -0,0 +1,3 @@
{
"endOfLine": "auto"
}