Skip to content

Commit 2bcc0eb

Browse files
committed
initial commit
Signed-off-by: Lexus Drumgold <[email protected]>
0 parents  commit 2bcc0eb

Some content is hidden

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

88 files changed

+14366
-0
lines changed

.commitlintrc.json

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
{
2+
"defaultIgnores": true,
3+
"extends": ["@commitlint/config-conventional"],
4+
"formatter": "@commitlint/format",
5+
"ignores": [],
6+
"rules": {
7+
"scope-case": [2, "always", ["kebab-case", "lower-case"]],
8+
"scope-enum": [
9+
2,
10+
"always",
11+
[
12+
"cjs",
13+
"deps",
14+
"deps-bundle",
15+
"deps-dev",
16+
"deps-opt",
17+
"deps-peer",
18+
"enums",
19+
"esm",
20+
"exports",
21+
"github",
22+
"guards",
23+
"interfaces",
24+
"internal",
25+
"patches",
26+
"pkg",
27+
"release",
28+
"scripts",
29+
"tests",
30+
"ts",
31+
"types",
32+
"vscode",
33+
"workflows",
34+
"yarn"
35+
]
36+
],
37+
"subject-case": [1, "always", "lower-case"],
38+
"type-enum": [
39+
2,
40+
"always",
41+
[
42+
"build",
43+
"chore",
44+
"ci",
45+
"docs",
46+
"feat",
47+
"fix",
48+
"perf",
49+
"refactor",
50+
"revert",
51+
"style",
52+
"test",
53+
"wip"
54+
]
55+
]
56+
}
57+
}

.cspell.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
3+
"allowCompoundWords": true,
4+
"caseSensitive": false,
5+
"dictionaries": ["@flex-development/docast"],
6+
"dictionaryDefinitions": [
7+
{
8+
"name": "@flex-development/docast",
9+
"path": "./.dictionary.txt"
10+
}
11+
],
12+
"enableGlobDot": true,
13+
"failFast": false,
14+
"flagWords": [],
15+
"ignorePaths": [
16+
"**/*.snap",
17+
"**/.gitignore",
18+
".cspell.json",
19+
".env*",
20+
".git/",
21+
".husky/_/",
22+
".yarn/",
23+
"CHANGELOG.md",
24+
"LICENSE.md",
25+
"__tests__/report.json",
26+
"dist/",
27+
"patches/",
28+
"yarn.lock"
29+
],
30+
"ignoreRegExpList": ["/from\\s+(['\"]).*\\1/"],
31+
"ignoreWords": [],
32+
"language": "en-US",
33+
"patterns": [],
34+
"readonly": true,
35+
"useGitignore": true,
36+
"usePnP": false,
37+
"version": "0.2",
38+
"words": ["docast", "fldv"]
39+
}

.dictionary.txt

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
ardatan
2+
autocrlf
3+
autosetuprebase
4+
bdel
5+
bdelr
6+
bdougie
7+
bren
8+
bstract
9+
cefc
10+
chbfeat
11+
chbfix
12+
chbhotfix
13+
chbrelease
14+
commitlintrc
15+
dawidd
16+
dedupe
17+
dessant
18+
dohm
19+
esbenp
20+
esbuild
21+
fbca
22+
fpnv
23+
gpgsign
24+
graphqlrc
25+
hmarr
26+
iife
27+
keyid
28+
larsgw
29+
lcov
30+
micnncim
31+
mkbuild
32+
mlly
33+
nocheck
34+
npmrc
35+
nums
36+
nvmrc
37+
pkgs
38+
preid
39+
safecrlf
40+
syncer
41+
unist
42+
vates
43+
vfile
44+
vitest
45+
vsicons
46+
yarnrc
47+
yntax

.editorconfig

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# EDITORCONFIG
2+
# https://editorconfig.org
3+
4+
# indicate top-most editorconfig file
5+
root = true
6+
7+
# universal rules
8+
[*]
9+
charset = 'utf-8'
10+
end_of_line = lf
11+
indent_size = 2
12+
indent_style = 'space'
13+
insert_final_newline = true
14+
max_line_length = 80
15+
trim_trailing_whitespace = true
16+
17+
# handlebars
18+
[*.hbs]
19+
max_line_length = 100
20+
21+
# shellscript
22+
[*.sh]
23+
max_line_length = 100
24+
25+
# snapshots
26+
[*.snap]
27+
max_line_length = 130
28+
29+
# yaml
30+
[*.yml]
31+
max_line_length = 100

.env.zsh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# ENVIRONMENT VARIABLES - ZSH
2+
#
3+
# References:
4+
#
5+
# - https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/dotenv
6+
7+
NODE_NO_WARNINGS=1
8+
VITEST_SEGFAULT_RETRY=3

.eslintignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# ESLINT IGNORE
2+
# https://eslint.org/docs/user-guide/configuring#ignoring-files-and-directories
3+
4+
# DIRECTORIES & FILES
5+
**/*.snap
6+
**/.DS_Store
7+
.eslintcache
8+
.yarn/*
9+
__tests__/report.json
10+
coverage/*
11+
dist/*
12+
node_modules/*
13+
yarn.lock
14+
15+
# NEGATED PATTERNS
16+
!/.*

0 commit comments

Comments
 (0)