Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
Signed-off-by: Lexus Drumgold <[email protected]>
  • Loading branch information
unicornware committed Sep 1, 2022
0 parents commit 50385b6
Show file tree
Hide file tree
Showing 92 changed files with 14,465 additions and 0 deletions.
55 changes: 55 additions & 0 deletions .commitlintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{
"defaultIgnores": true,
"extends": ["@commitlint/config-conventional"],
"formatter": "@commitlint/format",
"ignores": [],
"rules": {
"scope-case": [2, "always", ["kebab-case", "lower-case"]],
"scope-enum": [
2,
"always",
[
"cjs",
"cli",
"deps",
"deps-dev",
"deps-opt",
"deps-peer",
"esm",
"exports",
"github",
"hybrid",
"interfaces",
"node",
"options",
"pkg",
"release",
"scripts",
"tests",
"ts",
"vscode",
"workflows",
"yarn"
]
],
"subject-case": [1, "always", "lower-case"],
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
"wip"
]
]
}
}
38 changes: 38 additions & 0 deletions .cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"allowCompoundWords": true,
"caseSensitive": false,
"dictionaries": ["@flex-development/mkbuild"],
"dictionaryDefinitions": [
{
"name": "@flex-development/mkbuild",
"path": "./.dictionary.txt"
}
],
"enableGlobDot": true,
"failFast": false,
"flagWords": [],
"ignorePaths": [
"**/*.snap",
"**/.gitignore",
".cspell.json",
".env*",
".git/",
".husky/_/",
".yarn/",
"CHANGELOG.md",
"LICENSE.md",
"__tests__/report.json",
"dist/",
"yarn.lock"
],
"ignoreRegExpList": [],
"ignoreWords": [],
"language": "en-US",
"patterns": [],
"readonly": true,
"useGitignore": true,
"usePnP": false,
"version": "0.2",
"words": ["fldv"]
}
46 changes: 46 additions & 0 deletions .dictionary.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
ardatan
autocrlf
autosetuprebase
bdel
bdelr
bdougie
bren
cefc
chbfeat
chbfix
chbhotfix
chbrelease
commitlintrc
dawidd
dedupe
dessant
dohm
esbenp
esbuild
fbca
fpnv
globby
gpgsign
graphqlrc
hmarr
iife
keyid
larsgw
lcov
micnncim
mkbuild
mlly
nocheck
npmrc
nums
nvmrc
ohmyzsh
pkgs
preid
safecrlf
syncer
tsnode
vates
vitest
vsicons
yarnrc
19 changes: 19 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# EDITORCONFIG
# https://editorconfig.org

# indicate top-most editorconfig file
root = true

# universal rules
[*]
charset = 'utf-8'
end_of_line = lf
indent_size = 2
indent_style = 'space'
insert_final_newline = true
max_line_length = 80
trim_trailing_whitespace = true

# yaml
[*.yml]
max_line_length = 100
7 changes: 7 additions & 0 deletions .env.test
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# ENVIRONMENT VARIABLES - TEST
#
# References:
#
# - https://vitejs.dev/guide/env-and-mode.html#env-files

NODE_ENV=test
11 changes: 11 additions & 0 deletions .env.zsh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# ENVIRONMENT VARIABLES - ZSH
#
# References:
#
# - https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/dotenv

NODE_NO_WARNINGS=1
NODE_OPTIONS='--es-module-specifier-resolution=node'
PROJECT_CWD=$(node -e "console.log(path.resolve('.'))")
TS_NODE_PROJECT=$PROJECT_CWD/tsconfig.tsnode.json
VITEST_SEGFAULT_RETRY=3
16 changes: 16 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# ESLINT IGNORE
# https://eslint.org/docs/user-guide/configuring#ignoring-files-and-directories

# DIRECTORIES & FILES
**/*.snap
**/.DS_Store
.eslintcache
.yarn/*
__tests__/report.json
coverage/*
dist/*
node_modules/*
yarn.lock

# NEGATED PATTERNS
!/.*
Loading

0 comments on commit 50385b6

Please sign in to comment.