Skip to content

Commit 0bc284e

Browse files
committed
chore: update project architecture
Signed-off-by: Lexus Drumgold <[email protected]>
1 parent ebce7da commit 0bc284e

37 files changed

+1555
-1027
lines changed

.cspell.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
"**/*.snap",
1717
"**/.gitconfig",
1818
"**/.gitignore",
19+
"**/CHANGELOG.md",
20+
"**/LICENSE.md",
21+
"**/RELEASE_NOTES.md",
1922
"**/dist/",
2023
".cspell.json",
2124
".env*",
@@ -26,11 +29,10 @@
2629
".vercel/",
2730
".vscode/settings.json",
2831
".yarn/",
29-
"CHANGELOG.md",
30-
"LICENSE.md",
3132
"__tests__/report.json",
3233
"patches/",
33-
"tsconfig.temp.json",
34+
"tsconfig*temp.json",
35+
"vitest.config.*.timestamp-*.mjs",
3436
"yarn.lock"
3537
],
3638
"ignoreRegExpList": [
@@ -56,6 +58,7 @@
5658
"ESOCKTNOSUPPORT",
5759
"Odfijos",
5860
"errno",
59-
"fldv"
61+
"fldv",
62+
"mlly"
6063
]
6164
}

.dictionary.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,14 @@ fbca
1212
gpgsign
1313
hmarr
1414
iife
15+
infile
1516
instanceof
1617
keyid
17-
keyof
1818
larsgw
1919
lcov
2020
lintstagedrc
2121
micnncim
2222
mkbuild
23-
mlly
2423
nocheck
2524
npmrc
2625
nums
@@ -30,6 +29,5 @@ pnpm
3029
preid
3130
syncer
3231
vates
33-
vitest
3432
whatwg
3533
yarnrc

.eslintignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ __tests__/report.json
88
coverage/
99
dist/
1010
node_modules/
11-
tsconfig.temp.json
11+
tsconfig*temp.json
12+
vitest.config.*.timestamp-*.mjs
1213
yarn.lock
1314

1415
# NEGATED PATTERNS

.eslintrc.base.cjs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ const config = {
3131
'plugin:prettier/recommended'
3232
],
3333
globals: {
34+
BufferEncoding: 'readonly',
3435
Chai: 'readonly',
3536
Console: 'readonly',
3637
JSX: jsx ? 'readonly' : false,
@@ -474,6 +475,7 @@ const config = {
474475
'no-magic-numbers': 0,
475476
'no-restricted-imports': 0,
476477
'no-shadow': 0,
478+
'no-sparse-arrays': 0,
477479
'no-unused-expressions': 0,
478480
'no-unused-vars': 0,
479481
'no-use-before-define': 0,

.gitattributes

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
# TEXT FILE ATTRIBUTES
2020
# ------------------------------------------------------------------------------
2121
*.cjs text eol=lf
22-
*.cts text eol=lf
2322
*.gql text eol=lf
2423
*.hbs text eol=lf
2524
*.json text eol=lf

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ body:
6161
type: dropdown
6262
attributes:
6363
label: Package manager
64-
description: Provide the package manager that you are using
64+
description: Package manager you are using
6565
options:
6666
- npm
6767
- other
@@ -80,7 +80,7 @@ body:
8080
type: dropdown
8181
attributes:
8282
label: Operating system (environment)
83-
description: Provide the operating system that you are using
83+
description: Operating system you are using
8484
options:
8585
- linux
8686
- macos

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ A list of linked issues and/or pull requests.
2525

2626
## Additional context
2727

28-
<!-- Include additional details here. Be sure to note if any tolerable vulnerabilities or warnings have been introduced. -->
28+
<!--
29+
Include additional details here. Be sure to note if any tolerable vulnerabilities or warnings have been introduced.
30+
-->
2931

3032
## Submission checklist
3133

.github/dependabot.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ updates:
3333
directory: /
3434
ignore:
3535
- dependency-name: '@types/node'
36-
- dependency-name: '@vitest/*'
37-
- dependency-name: vitest
3836
labels:
3937
- scope:dependencies
4038
- type:build

.github/workflows/integrity.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
#
33
# References:
44
#
5+
# - https://docs.github.com/actions/learn-github-actions/expressions
6+
# - https://docs.github.com/actions/using-workflows/events-that-trigger-workflows#create
7+
# - https://docs.github.com/actions/using-workflows/events-that-trigger-workflows#pull_request
58
# - https://github.com/actions/checkout
69
# - https://yarnpkg.com/cli/dedupe
710

.github/workflows/publish.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ jobs:
5555
gpr:
5656
needs: metadata
5757
permissions:
58-
contents: write
5958
packages: write
6059
runs-on: ubuntu-latest
6160
environment:
@@ -90,8 +89,6 @@ jobs:
9089
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9190
npm:
9291
needs: [metadata, gpr]
93-
permissions:
94-
contents: write
9592
runs-on: ubuntu-latest
9693
environment:
9794
name: npm

0 commit comments

Comments
 (0)