Skip to content

Commit 7d908a0

Browse files
committed
🎉 First commit of fork
1 parent c316826 commit 7d908a0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+1904
-35908
lines changed

.eslintignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.DS_Store
2+
node_modules
3+
/build
4+
/.svelte-kit
5+
/package
6+
.env
7+
.env.*
8+
!.env.example
9+
10+
# Ignore files for PNPM, NPM and YARN
11+
pnpm-lock.yaml
12+
package-lock.json
13+
yarn.lock

.eslintrc.cjs

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
module.exports = {
2+
root: true,
3+
extends: [
4+
'eslint:recommended',
5+
'plugin:@typescript-eslint/recommended',
6+
'plugin:svelte/recommended',
7+
'prettier'
8+
],
9+
parser: '@typescript-eslint/parser',
10+
plugins: ['@typescript-eslint'],
11+
ignorePatterns: ['*.cjs'],
12+
parserOptions: {
13+
sourceType: 'module',
14+
ecmaVersion: 2020,
15+
extraFileExtensions: ['.svelte']
16+
},
17+
env: {
18+
browser: true,
19+
es2017: true,
20+
node: true
21+
},
22+
overrides: [
23+
{
24+
files: ['*.svelte'],
25+
parser: 'svelte-eslint-parser',
26+
parserOptions: {
27+
parser: '@typescript-eslint/parser'
28+
}
29+
}
30+
]
31+
};

.gitignore

Lines changed: 8 additions & 192 deletions
Original file line numberDiff line numberDiff line change
@@ -1,194 +1,10 @@
1-
# File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
2-
3-
# Created by https://www.gitignore.io/api/linux,macos,node,sublimetext,visualstudiocode,windows
4-
5-
### Linux ###
6-
*~
7-
8-
# temporary files which can be created if a process still has a handle open of a deleted file
9-
.fuse_hidden*
10-
11-
# KDE directory preferences
12-
.directory
13-
14-
# Linux trash folder which might appear on any partition or disk
15-
.Trash-*
16-
17-
# .nfs files are created when an open file is removed but is still being accessed
18-
.nfs*
19-
20-
### macOS ###
21-
# General
221
.DS_Store
23-
.AppleDouble
24-
.LSOverride
25-
26-
# Icon must end with two \r
27-
Icon
28-
29-
# Thumbnails
30-
._*
31-
32-
# Files that might appear in the root of a volume
33-
.DocumentRevisions-V100
34-
.fseventsd
35-
.Spotlight-V100
36-
.TemporaryItems
37-
.Trashes
38-
.VolumeIcon.icns
39-
.com.apple.timemachine.donotpresent
40-
41-
# Directories potentially created on remote AFP share
42-
.AppleDB
43-
.AppleDesktop
44-
Network Trash Folder
45-
Temporary Items
46-
.apdisk
47-
48-
### Node ###
49-
# Logs
50-
logs
51-
*.log
52-
npm-debug.log*
53-
yarn-debug.log*
54-
yarn-error.log*
55-
56-
# Runtime data
57-
pids
58-
*.pid
59-
*.seed
60-
*.pid.lock
61-
62-
# Directory for instrumented libs generated by jscoverage/JSCover
63-
lib-cov
64-
65-
# Coverage directory used by tools like istanbul
66-
coverage
67-
68-
# nyc test coverage
69-
.nyc_output
70-
71-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
72-
.grunt
73-
74-
# Bower dependency directory (https://bower.io/)
75-
bower_components
76-
77-
# node-waf configuration
78-
.lock-wscript
79-
80-
# Compiled binary addons (https://nodejs.org/api/addons.html)
81-
build/Release
82-
83-
# Dependency directories
84-
node_modules/
85-
jspm_packages/
86-
87-
# TypeScript v1 declaration files
88-
typings/
89-
90-
# Optional npm cache directory
91-
.npm
92-
93-
# Optional eslint cache
94-
.eslintcache
95-
96-
# Optional REPL history
97-
.node_repl_history
98-
99-
# Output of 'npm pack'
100-
*.tgz
101-
102-
# Yarn Integrity file
103-
.yarn-integrity
104-
105-
# dotenv environment variables file
2+
node_modules
3+
/build
4+
/.svelte-kit
5+
/package
1066
.env
107-
108-
# parcel-bundler cache (https://parceljs.org/)
109-
.cache
110-
111-
# next.js build output
112-
.next
113-
114-
# nuxt.js build output
115-
.nuxt
116-
117-
# vuepress build output
118-
.vuepress/dist
119-
120-
# Serverless directories
121-
.serverless
122-
123-
### SublimeText ###
124-
# Cache files for Sublime Text
125-
*.tmlanguage.cache
126-
*.tmPreferences.cache
127-
*.stTheme.cache
128-
129-
# Workspace files are user-specific
130-
*.sublime-workspace
131-
132-
# Project files should be checked into the repository, unless a significant
133-
# proportion of contributors will probably not be using Sublime Text
134-
# *.sublime-project
135-
136-
# SFTP configuration file
137-
sftp-config.json
138-
139-
# Package control specific files
140-
Package Control.last-run
141-
Package Control.ca-list
142-
Package Control.ca-bundle
143-
Package Control.system-ca-bundle
144-
Package Control.cache/
145-
Package Control.ca-certs/
146-
Package Control.merged-ca-bundle
147-
Package Control.user-ca-bundle
148-
oscrypto-ca-bundle.crt
149-
bh_unicode_properties.cache
150-
151-
# Sublime-github package stores a github token in this file
152-
# https://packagecontrol.io/packages/sublime-github
153-
GitHub.sublime-settings
154-
155-
### VisualStudioCode ###
156-
.vscode/*
157-
!.vscode/settings.json
158-
!.vscode/tasks.json
159-
!.vscode/launch.json
160-
!.vscode/extensions.json
161-
162-
### Windows ###
163-
# Windows thumbnail cache files
164-
Thumbs.db
165-
ehthumbs.db
166-
ehthumbs_vista.db
167-
168-
# Dump file
169-
*.stackdump
170-
171-
# Folder config file
172-
[Dd]esktop.ini
173-
174-
# Recycle Bin used on file shares
175-
$RECYCLE.BIN/
176-
177-
# Windows Installer files
178-
*.cab
179-
*.msi
180-
*.msix
181-
*.msm
182-
*.msp
183-
184-
# Windows shortcuts
185-
*.lnk
186-
187-
188-
# End of https://www.gitignore.io/api/linux,macos,node,sublimetext,visualstudiocode,windows
189-
190-
# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
191-
192-
.cache/
193-
# Build directory
194-
public/
7+
.env.*
8+
!.env.example
9+
vite.config.js.timestamp-*
10+
vite.config.ts.timestamp-*

.npmrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
engine-strict=true
2+
resolution-mode=highest

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v18.12.1
1+
v18.16.0

.prettierignore

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1-
.cache
1+
.DS_Store
2+
node_modules
3+
/build
4+
/.svelte-kit
5+
/package
6+
.env
7+
.env.*
8+
!.env.example
9+
10+
# Ignore files for PNPM, NPM and YARN
11+
pnpm-lock.yaml
212
package-lock.json
3-
public
13+
yarn.lock

.prettierrc

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
{
2-
"semi": false,
3-
"arrowParens": "avoid",
4-
"trailingComma": "es5",
5-
"quoteProps": "as-needed",
6-
"singleQuote": true,
7-
"jsxSingleQuote": true,
8-
"jsxBracketSameLine": true,
9-
"bracketSpacing": true,
10-
"useTabs": false,
11-
"endOfLine": "auto",
12-
"tabWidth": 2
2+
"useTabs": true,
3+
"singleQuote": true,
4+
"trailingComma": "none",
5+
"printWidth": 100,
6+
"plugins": ["prettier-plugin-svelte"],
7+
"pluginSearchDirs": ["."],
8+
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
139
}

.vscode/launch.json

Lines changed: 0 additions & 20 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 0 additions & 7 deletions
This file was deleted.

.vscode/tasks.json

Lines changed: 0 additions & 34 deletions
This file was deleted.

0 commit comments

Comments
 (0)