Skip to content

Commit ef56c21

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

File tree

88 files changed

+14656
-0
lines changed

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

+14656
-0
lines changed

.commitlintrc.json

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
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+
"deps",
13+
"deps-bundle",
14+
"deps-dev",
15+
"deps-peer",
16+
"esm",
17+
"exports",
18+
"github",
19+
"patches",
20+
"pkg",
21+
"release",
22+
"regex",
23+
"scripts",
24+
"tests",
25+
"ts",
26+
"vscode",
27+
"workflows",
28+
"yarn"
29+
]
30+
],
31+
"subject-case": [1, "always", "lower-case"],
32+
"type-enum": [
33+
2,
34+
"always",
35+
[
36+
"build",
37+
"chore",
38+
"ci",
39+
"docs",
40+
"feat",
41+
"fix",
42+
"perf",
43+
"refactor",
44+
"revert",
45+
"style",
46+
"test",
47+
"wip"
48+
]
49+
]
50+
}
51+
}

.cspell.json

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

.dictionary.txt

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
ardatan
2+
bdougie
3+
cefc
4+
commitlintrc
5+
dawidd
6+
dedupe
7+
dessant
8+
dohm
9+
esbenp
10+
esbuild
11+
fbca
12+
gpgsign
13+
graphqlrc
14+
hmarr
15+
iife
16+
keyid
17+
larsgw
18+
lcov
19+
micnncim
20+
mkbuild
21+
nocheck
22+
npmrc
23+
nums
24+
pcre
25+
pkgs
26+
preid
27+
syncer
28+
vates
29+
vsicons
30+
yarnrc

.editorconfig

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# EDITORCONFIG
2+
# https://editorconfig.org
3+
# https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties
4+
5+
# indicate top-most editorconfig file
6+
root = true
7+
8+
# universal rules
9+
[*]
10+
charset = utf-8
11+
continuation_indent_size = 2
12+
curly_bracket_next_line = false
13+
end_of_line = lf
14+
indent_brace_style = BSD
15+
indent_size = 2
16+
indent_style = space
17+
insert_final_newline = true
18+
max_line_length = 80
19+
quote_type = single
20+
spaces_around_brackets = inside
21+
spaces_around_operators = true
22+
tab_width = 2
23+
trim_trailing_whitespace = true
24+
25+
# handlebars
26+
[*.hbs]
27+
max_line_length = 100
28+
29+
# markdown
30+
[*.md]
31+
max_line_length = 120
32+
33+
# shellscript
34+
[*.sh]
35+
max_line_length = 100
36+
37+
# snapshots
38+
[*.snap]
39+
max_line_length = 130
40+
41+
# yaml
42+
[*.yml]
43+
max_line_length = 100

.env.zsh

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

.eslintignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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+
tsconfig.temp.json
14+
yarn.lock
15+
16+
# NEGATED PATTERNS
17+
!/.*

0 commit comments

Comments
 (0)