Skip to content

Commit c43354e

Browse files
committed
feat: initialise project
0 parents  commit c43354e

File tree

9 files changed

+2063
-0
lines changed

9 files changed

+2063
-0
lines changed

.gitignore

Lines changed: 270 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,270 @@
1+
# Covers JetBrains IDEs: IntelliJ, GoLand, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
2+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
3+
4+
# User-specific stuff
5+
.idea/**/workspace.xml
6+
.idea/**/tasks.xml
7+
.idea/**/usage.statistics.xml
8+
.idea/**/dictionaries
9+
.idea/**/shelf
10+
11+
# AWS User-specific
12+
.idea/**/aws.xml
13+
14+
# Generated files
15+
.idea/**/contentModel.xml
16+
17+
# Sensitive or high-churn files
18+
.idea/**/dataSources/
19+
.idea/**/dataSources.ids
20+
.idea/**/dataSources.local.xml
21+
.idea/**/sqlDataSources.xml
22+
.idea/**/dynamic.xml
23+
.idea/**/uiDesigner.xml
24+
.idea/**/dbnavigator.xml
25+
26+
# Gradle
27+
.idea/**/gradle.xml
28+
.idea/**/libraries
29+
30+
# Gradle and Maven with auto-import
31+
# When using Gradle or Maven with auto-import, you should exclude module files,
32+
# since they will be recreated, and may cause churn. Uncomment if using
33+
# auto-import.
34+
.idea/
35+
*.iml
36+
*.ipr
37+
38+
# CMake
39+
cmake-build-*/
40+
41+
# Mongo Explorer plugin
42+
.idea/**/mongoSettings.xml
43+
44+
# File-based project format
45+
*.iws
46+
47+
# IntelliJ
48+
out/
49+
50+
# mpeltonen/sbt-idea plugin
51+
.idea_modules/
52+
53+
# JIRA plugin
54+
atlassian-ide-plugin.xml
55+
56+
# Cursive Clojure plugin
57+
.idea/replstate.xml
58+
59+
# SonarLint plugin
60+
.idea/sonarlint/
61+
.idea/sonarlint.xml # see https://community.sonarsource.com/t/is-the-file-idea-idea-idea-sonarlint-xml-intended-to-be-under-source-control/121119
62+
63+
# Crashlytics plugin (for Android Studio and IntelliJ)
64+
com_crashlytics_export_strings.xml
65+
crashlytics.properties
66+
crashlytics-build.properties
67+
fabric.properties
68+
69+
# Editor-based Rest Client
70+
.idea/httpRequests
71+
72+
# Android studio 3.1+ serialized cache file
73+
.idea/caches/build_file_checksums.ser
74+
75+
.vscode/*
76+
!.vscode/settings.json
77+
!.vscode/tasks.json
78+
!.vscode/launch.json
79+
!.vscode/extensions.json
80+
!.vscode/*.code-snippets
81+
82+
# Local History for Visual Studio Code
83+
.history/
84+
85+
# Built Visual Studio Code Extensions
86+
*.vsix
87+
88+
# General
89+
.DS_Store
90+
.AppleDouble
91+
.LSOverride
92+
93+
# Thumbnails
94+
._*
95+
96+
# Files that might appear in the root of a volume
97+
.DocumentRevisions-V100
98+
.fseventsd
99+
.Spotlight-V100
100+
.TemporaryItems
101+
.Trashes
102+
.VolumeIcon.icns
103+
.com.apple.timemachine.donotpresent
104+
105+
# Directories potentially created on remote AFP share
106+
.AppleDB
107+
.AppleDesktop
108+
Network Trash Folder
109+
Temporary Items
110+
.apdisk
111+
112+
# Windows thumbnail cache files
113+
Thumbs.db
114+
Thumbs.db:encryptable
115+
ehthumbs.db
116+
ehthumbs_vista.db
117+
118+
# Dump file
119+
*.stackdump
120+
121+
# Folder config file
122+
[Dd]esktop.ini
123+
124+
# Recycle Bin used on file shares
125+
$RECYCLE.BIN/
126+
127+
# Windows Installer files
128+
*.cab
129+
*.msi
130+
*.msix
131+
*.msm
132+
*.msp
133+
134+
# Windows shortcuts
135+
*.lnk
136+
137+
# Logs
138+
logs
139+
*.log
140+
npm-debug.log*
141+
yarn-debug.log*
142+
yarn-error.log*
143+
lerna-debug.log*
144+
.pnpm-debug.log*
145+
146+
# Diagnostic reports (https://nodejs.org/api/report.html)
147+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
148+
149+
# Runtime data
150+
pids
151+
*.pid
152+
*.seed
153+
*.pid.lock
154+
155+
# Directory for instrumented libs generated by jscoverage/JSCover
156+
lib-cov
157+
158+
# Coverage directory used by tools like istanbul
159+
coverage
160+
*.lcov
161+
162+
# nyc test coverage
163+
.nyc_output
164+
165+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
166+
.grunt
167+
168+
# Bower dependency directory (https://bower.io/)
169+
bower_components
170+
171+
# node-waf configuration
172+
.lock-wscript
173+
174+
# Compiled binary addons (https://nodejs.org/api/addons.html)
175+
build/Release
176+
177+
# Dependency directories
178+
node_modules/
179+
jspm_packages/
180+
181+
# Snowpack dependency directory (https://snowpack.dev/)
182+
web_modules/
183+
184+
# TypeScript cache
185+
*.tsbuildinfo
186+
187+
# Optional npm cache directory
188+
.npm
189+
190+
# Optional eslint cache
191+
.eslintcache
192+
193+
# Optional stylelint cache
194+
.stylelintcache
195+
196+
# Microbundle cache
197+
.rpt2_cache/
198+
.rts2_cache_cjs/
199+
.rts2_cache_es/
200+
.rts2_cache_umd/
201+
202+
# Optional REPL history
203+
.node_repl_history
204+
205+
# Output of 'npm pack'
206+
*.tgz
207+
208+
# Yarn Integrity file
209+
.yarn-integrity
210+
211+
# dotenv environment variable files
212+
.env
213+
.env.development.local
214+
.env.test.local
215+
.env.production.local
216+
.env.local
217+
218+
# parcel-bundler cache (https://parceljs.org/)
219+
.cache
220+
.parcel-cache
221+
222+
# Next.js build output
223+
.next
224+
out
225+
226+
# Nuxt.js build / generate output
227+
.nuxt
228+
dist
229+
230+
# Gatsby files
231+
.cache/
232+
# Comment in the public line in if your project uses Gatsby and not Next.js
233+
# https://nextjs.org/blog/next-9-1#public-directory-support
234+
# public
235+
236+
# vuepress build output
237+
.vuepress/dist
238+
239+
# vuepress v2.x temp and cache directory
240+
.temp
241+
242+
# vitepress build output
243+
**/.vitepress/dist
244+
245+
# vitepress cache directory
246+
**/.vitepress/cache
247+
248+
# Docusaurus cache and generated files
249+
.docusaurus
250+
251+
# Serverless directories
252+
.serverless/
253+
254+
# FuseBox cache
255+
.fusebox/
256+
257+
# DynamoDB Local files
258+
.dynamodb/
259+
260+
# TernJS port file
261+
.tern-por
262+
# Stores VSCode versions used for testing VSCode extensions
263+
.vscode-test
264+
265+
# yarn v2
266+
.yarn/cache
267+
.yarn/unplugged
268+
.yarn/build-state.yml
269+
.yarn/install-state.gz
270+
.pnp.*

.prettierrc.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
printWidth: 80
2+
tabWidth: 2
3+
useTabs: false
4+
semi: false
5+
singleQuote: false
6+
quoteProps: as-needed
7+
jsxSingleQuote: false
8+
trailingComma: es5
9+
bracketSpacing: true
10+
bracketSameLine: true
11+
arrowParens: always
12+
#rangeStart: 0
13+
#rangeEnd: n
14+
#parser:
15+
#filepath:
16+
#requirePragma: false
17+
#insertPragma: false
18+
#proseWrap: preserve
19+
htmlWhitespaceSensitivity: css
20+
#vueIndentScriptAndStyle: false
21+
endOfLine: lf
22+
#embeddedLanguageFormatting: auto
23+
# Enforce single attribute per line in HTML, Vue and JSX
24+
#singleAttributePerLine: false

package.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "onixbyte.github.io",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"docs:dev": "vitepress dev src",
8+
"docs:build": "vitepress build src",
9+
"docs:preview": "vitepress preview src"
10+
},
11+
"keywords": [],
12+
"author": "Zihlu Wang",
13+
"license": "MIT",
14+
"packageManager": "pnpm@10.10.0",
15+
"devDependencies": {
16+
"prettier": "^3.5.3",
17+
"vitepress": "^1.6.3"
18+
}
19+
}

0 commit comments

Comments
 (0)