Skip to content

Commit 327fcca

Browse files
committed
build: 🚧 Added NX, Eslint, Prettier and Removed some config for later
Added NX configuration, Eslint, Prettier and Removed some config for later
1 parent d12cf93 commit 327fcca

19 files changed

Lines changed: 4445 additions & 218 deletions

.devcontainer/devcontainer.json

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,44 +11,47 @@
1111
"customizations": {
1212
"vscode": {
1313
"extensions": [
14+
"dbaeumer.vscode-eslint",
1415
"christian-kohler.path-intellisense",
1516
"christian-kohler.npm-intellisense",
16-
"pflannery.vscode-versionlens",
17-
"VisualStudioExptTeam.vscodeintellicode",
1817
"redhat.vscode-yaml",
1918
"aaron-bond.better-comments",
2019
"eamodio.gitlens",
21-
"EditorConfig.EditorConfig",
20+
"editorconfig.editorconfig",
2221
"esbenp.prettier-vscode",
2322
"mikestead.dotenv",
2423
"wix.vscode-import-cost",
2524
"streetsidesoftware.code-spell-checker",
26-
"DavidAnson.vscode-markdownlint",
25+
"davidanson.vscode-markdownlint",
2726
"nrwl.angular-console",
2827
"stringham.move-ts",
2928
"pmneo.tsimporter",
30-
"WallabyJs.quokka-vscode",
31-
"WallabyJs.console-ninja",
29+
"wallabyjs.quokka-vscode",
30+
"wallabyjs.console-ninja",
3231
"antfu.vite",
3332
"mhutchie.git-graph",
3433
"shardulm94.trailing-spaces",
3534
"usernamehw.errorlens",
3635
"yzhang.markdown-all-in-one",
3736
"vivaxy.vscode-conventional-commits",
3837
"wayou.vscode-todo-highlight",
39-
"Gruntfuggly.todo-tree",
38+
"gruntfuggly.todo-tree",
4039
"folke.vscode-monorepo-workspace",
41-
"dsznajder.es7-react-js-snippets",
4240
"formulahendry.auto-close-tag",
4341
"formulahendry.auto-rename-tag",
4442
"haydenbleasel.vercel-vscode",
4543
"steoates.autoimport",
46-
"YoavBls.pretty-ts-errors",
44+
"yoavbls.pretty-ts-errors",
4745
"bradlc.vscode-tailwindcss",
4846
"pranaygp.vscode-css-peek",
4947
"codezombiech.gitignore",
50-
"GitHub.vscode-github-actions"
48+
"github.vscode-github-actions"
5149
]
5250
}
51+
},
52+
"portsAttributes": {
53+
"5173": {
54+
"label": "app"
55+
}
5356
}
5457
}

.editorconfig

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,8 @@ root = true
55

66
[*]
77
indent_style = space
8-
indent_size = 4
8+
indent_size = 2
99
end_of_line = lf
1010
charset = utf-8
1111
trim_trailing_whitespace = true
1212
insert_final_newline = true
13-
14-
[*.{json}]
15-
indent_size = 2
16-
insert_final_newline = false

.eslintignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.vscode
2+
.pnpm-store
3+
.nx
4+
pnpm-*.yaml
5+
6+
node_modules
Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
22
name: Bug report
33
about: Create a report to help us improve
4-
title: ''
5-
labels: ''
6-
assignees: ''
7-
4+
title: ""
5+
labels: ""
6+
assignees: ""
87
---
98

109
**Describe the bug**
1110
A clear and concise description of what the bug is.
1211

1312
**To Reproduce**
1413
Steps to reproduce the behavior:
14+
1515
1. Go to '...'
1616
2. Click on '....'
1717
3. Scroll down to '....'
@@ -24,15 +24,17 @@ A clear and concise description of what you expected to happen.
2424
If applicable, add screenshots to help explain your problem.
2525

2626
**Desktop (please complete the following information):**
27-
- OS: [e.g. iOS]
28-
- Browser [e.g. chrome, safari]
29-
- Version [e.g. 22]
27+
28+
- OS: [e.g. iOS]
29+
- Browser [e.g. chrome, safari]
30+
- Version [e.g. 22]
3031

3132
**Smartphone (please complete the following information):**
32-
- Device: [e.g. iPhone6]
33-
- OS: [e.g. iOS8.1]
34-
- Browser [e.g. stock browser, safari]
35-
- Version [e.g. 22]
33+
34+
- Device: [e.g. iPhone6]
35+
- OS: [e.g. iOS8.1]
36+
- Browser [e.g. stock browser, safari]
37+
- Version [e.g. 22]
3638

3739
**Additional context**
3840
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
22
name: Feature request
33
about: Suggest an idea for this project
4-
title: ''
5-
labels: ''
6-
assignees: ''
7-
4+
title: ""
5+
labels: ""
6+
assignees: ""
87
---
98

109
**Is your feature request related to a problem? Please describe.**

.github/workflows/publish.yml

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

.gitignore

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,14 +132,36 @@ dist
132132
# Editor directories and files
133133
.husky/_
134134
.vscode/*
135-
.history/*
136-
!/.vscode/settings.json
135+
!.vscode/settings.json
136+
!.vscode/tasks.json
137+
!.vscode/launch.json
137138
!.vscode/extensions.json
139+
.history/*
138140
.idea
139141
.DS_Store
142+
Thumbs.db
140143
*.suo
141144
*.ntvs*
142145
*.njsproj
143146
*.sln
144147
*.sw?
145148
.pnpm-store/
149+
/.sass-cache
150+
/connect.lock
151+
/coverage
152+
/libpeerconnection.log
153+
npm-debug.log
154+
yarn-error.log
155+
testem.log
156+
/typings
157+
.project
158+
.classpath
159+
.c9/
160+
*.launch
161+
.settings/
162+
*.sublime-workspace
163+
tmp
164+
/out-tsc
165+
166+
.nx/cache
167+
.nx/workspace-data

.prettierignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.vscode
2+
.pnpm-store
3+
.nx
4+
pnpm-*.yaml

.vscode/extensions.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
"dbaeumer.vscode-eslint",
44
"christian-kohler.path-intellisense",
55
"christian-kohler.npm-intellisense",
6-
"pflannery.vscode-versionlens",
7-
"visualstudioexptteam.vscodeintellicode",
86
"redhat.vscode-yaml",
97
"aaron-bond.better-comments",
108
"eamodio.gitlens",
@@ -28,7 +26,6 @@
2826
"wayou.vscode-todo-highlight",
2927
"gruntfuggly.todo-tree",
3028
"folke.vscode-monorepo-workspace",
31-
"dsznajder.es7-react-js-snippets",
3229
"formulahendry.auto-close-tag",
3330
"formulahendry.auto-rename-tag",
3431
"haydenbleasel.vercel-vscode",

.vscode/settings.json

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,16 @@
44
"editor.formatOnSave": true,
55
"files.autoSaveWhenNoErrors": true,
66
"files.autoSaveWorkspaceFilesOnly": true,
7-
"git.branchProtection": ["main"],
7+
"git.branchProtection": [
8+
"main"
9+
],
810
"npm.packageManager": "pnpm",
911
"tailwindCSS.emmetCompletions": true,
10-
"editor.defaultFormatter": "esbenp.prettier-vscode"
11-
}
12+
"editor.defaultFormatter": "esbenp.prettier-vscode",
13+
"CodeGPT.apiKey": "CodeGPT Plus Beta",
14+
"cSpell.words": [
15+
"arcstack",
16+
"factman",
17+
"webapis"
18+
]
19+
}

0 commit comments

Comments
 (0)