From 063fdac80bb3374deb967010fb117732ca49d7f0 Mon Sep 17 00:00:00 2001 From: kevinwatt Date: Tue, 11 Feb 2025 02:46:27 +0800 Subject: [PATCH] add .gitignore and .prettierrc --- .gitignore | 36 ++++++++++++++++++++++++++++++++++++ .prettierrc | 3 +++ 2 files changed, 39 insertions(+) create mode 100644 .gitignore create mode 100644 .prettierrc diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..06cfcc8 --- /dev/null +++ b/.gitignore @@ -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/ diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..168d9d2 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,3 @@ +{ + "endOfLine": "auto" +}