Skip to content

Commit 73ea015

Browse files
committed
refactor: init project rewrite
Signed-off-by: Lexus Drumgold <[email protected]>
1 parent 86ec9e5 commit 73ea015

File tree

280 files changed

+8996
-23396
lines changed

Some content is hidden

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

280 files changed

+8996
-23396
lines changed

.codecov.yml

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

.commitlintrc.cts

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

.commitlintrc.ts

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/**
2+
* @file Configuration - commitlint
3+
* @module config/commitlint
4+
* @see https://commitlint.js.org
5+
*/
6+
7+
import {
8+
RuleConfigSeverity as Severity,
9+
type UserConfig
10+
} from '@commitlint/types'
11+
import { scopes, types } from '@flex-development/commitlint-config'
12+
13+
/**
14+
* `commitlint` configuration object.
15+
*
16+
* @const {UserConfig} config
17+
*/
18+
const config: UserConfig = {
19+
extends: ['@flex-development'],
20+
rules: {
21+
'scope-enum': [Severity.Error, 'always', scopes([
22+
'accounts',
23+
'chore',
24+
'container',
25+
'db',
26+
'docker',
27+
'health'
28+
])],
29+
'type-enum': [Severity.Error, 'always', types(['merge'])]
30+
}
31+
}
32+
33+
export default config

.cspell.json

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
"failFast": false,
1414
"flagWords": [],
1515
"ignorePaths": [
16-
"**/*.log",
1716
"**/*.snap",
1817
"**/.*ignore",
1918
"**/.gitconfig",
@@ -24,18 +23,10 @@
2423
".dictionary.txt",
2524
".git/",
2625
".husky/_/",
27-
".vscode/settings.json",
28-
".yarn/",
29-
"dist/",
30-
"patches/",
31-
"yarn.lock"
26+
".vscode/settings.json"
3227
],
33-
"ignoreRegExpList": [
34-
"/@flex-development\\/.*/",
35-
"/from\\s+(['\"]).*\\1/",
36-
"import\\(.*\\)"
37-
],
38-
"ignoreWords": [],
28+
"ignoreRegExpList": [],
29+
"ignoreWords": ["sneusers"],
3930
"language": "en-US",
4031
"patterns": [],
4132
"readonly": true,

.dictionary.txt

Lines changed: 9 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,17 @@
1-
ardatan
2-
axios
3-
bdougie
4-
bson
51
buildx
62
cefc
7-
cloudsdk
8-
codecov
93
commitlintrc
10-
dbdocs
11-
dbml
12-
dedupe
13-
dessant
14-
dohm
15-
dotenv
16-
dtos
17-
embeddable
4+
devlop
5+
fastify
186
fbca
19-
gcloud
20-
ggshield
7+
fldv
218
gpgsign
22-
gserviceaccount
239
hmarr
24-
iife
25-
infile
26-
initdb
27-
jsonifiable
28-
keyid
29-
larsgw
30-
lcov
31-
lintstagedrc
32-
mikro
33-
mkbuild
34-
mlly
35-
myip
36-
nestjs
37-
neusers
38-
nocheck
39-
nvmrc
40-
pathe
41-
pkgs
42-
preid
43-
rrdatas
44-
sneusers
45-
tscu
46-
typeorm
10+
jchen
11+
kaisugi
12+
ksort
13+
shfmt
14+
unplugin
4715
unstub
48-
upserts
4916
vates
50-
vtpm
51-
yarnrc
17+
vitest

.dockerignore

Lines changed: 9 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,20 @@
11
# DOCKER IGNORE
22
# https://docs.docker.com/engine/reference/builder#dockerignore-file
33

4-
# macOS
4+
# macos
55
# ------------------------------------------------------------------------------
66
.DS_*
77
._*
88

9-
# Node
10-
# ------------------------------------------------------------------------------
11-
*.log
12-
*.pid
13-
*.pid.lock
14-
*.seed
15-
*.tgz
16-
*.zip
17-
.npm
18-
.yarn-integrity
19-
logs
20-
npm-debug.log*
21-
pids
22-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
23-
yarn-debug.log*
24-
yarn-error.log*
25-
26-
# NPM
27-
# ------------------------------------------------------------------------------
28-
.npmignore
29-
30-
# Yarn 2 (Not using Zero-Installs)
31-
# https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
32-
# ------------------------------------------------------------------------------
33-
.pnp.*
34-
.yarn/*
35-
!.yarn/plugins
36-
!.yarn/releases
37-
!.yarn/sdks
38-
!.yarn/versions
39-
40-
# Environment
41-
# ------------------------------------------------------------------------------
42-
.env*
43-
.flaskenv*
44-
!.env.project
45-
!.env.vault
46-
47-
# Testing
9+
# testing
4810
# ------------------------------------------------------------------------------
4911
**/__mocks__/
5012
**/__snapshots__/
5113
**/__tests__/
14+
15+
# types
16+
# ------------------------------------------------------------------------------
17+
**/*.d.mts
18+
**/interfaces/
19+
**/types/
20+
src/types.mts

0 commit comments

Comments
 (0)