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 Nov 9, 2022
0 parents commit 0325a89
Show file tree
Hide file tree
Showing 64 changed files with 12,216 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .commitlintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{
"defaultIgnores": true,
"extends": ["@commitlint/config-conventional"],
"formatter": "@commitlint/format",
"ignores": [],
"rules": {
"scope-case": [2, "always", ["kebab-case", "lower-case"]],
"scope-enum": [
2,
"always",
[
"deps",
"deps-bundle",
"deps-dev",
"deps-opt",
"deps-peer",
"enums",
"exports",
"github",
"interfaces",
"nodes",
"patches",
"pkg",
"release",
"scripts",
"spec",
"ts",
"types",
"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"
]
]
}
}
37 changes: 37 additions & 0 deletions .cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"allowCompoundWords": true,
"caseSensitive": false,
"dictionaries": ["@flex-development/docast"],
"dictionaryDefinitions": [
{
"name": "@flex-development/docast",
"path": "./.dictionary.txt"
}
],
"enableGlobDot": true,
"failFast": false,
"flagWords": [],
"ignorePaths": [
"**/.gitignore",
".cspell.json",
".env*",
".git/",
".husky/_/",
".yarn/",
"CHANGELOG.md",
"LICENSE.md",
"dist/",
"patches/",
"yarn.lock"
],
"ignoreRegExpList": ["/from\\s+(['\"]).*\\1/"],
"ignoreWords": [],
"language": "en-US",
"patterns": [],
"readonly": true,
"useGitignore": true,
"usePnP": false,
"version": "0.2",
"words": ["docast", "fldv"]
}
43 changes: 43 additions & 0 deletions .dictionary.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
ardatan
autocrlf
autosetuprebase
bdel
bdelr
bdougie
bren
bstract
cefc
chbfeat
chbfix
chbhotfix
chbrelease
commitlintrc
dawidd
dedupe
dessant
dohm
esbenp
esbuild
fbca
fpnv
gpgsign
graphqlrc
hmarr
iife
keyid
larsgw
micnncim
mkbuild
nocheck
npmrc
nvmrc
pkgs
preid
safecrlf
syncer
tsdoc
unist
vates
vsicons
yarnrc
yntax
35 changes: 35 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# EDITORCONFIG
# https://editorconfig.org
# https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties

# indicate top-most editorconfig file
root = true

# universal rules
[*]
charset = utf-8
continuation_indent_size = 2
curly_bracket_next_line = false
end_of_line = lf
indent_brace_style = BSD
indent_size = 2
indent_style = space
insert_final_newline = true
max_line_length = 80
quote_type = single
spaces_around_brackets = inside
spaces_around_operators = true
tab_width = 2
trim_trailing_whitespace = true

# handlebars
[*.hbs]
max_line_length = 100

# shellscript
[*.sh]
max_line_length = 100

# yaml
[*.yml]
max_line_length = 100
7 changes: 7 additions & 0 deletions .env.zsh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# ENVIRONMENT VARIABLES - ZSH
#
# References:
#
# - https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/dotenv

NODE_NO_WARNINGS=1
13 changes: 13 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# ESLINT IGNORE
# https://eslint.org/docs/user-guide/configuring#ignoring-files-and-directories

# DIRECTORIES & FILES
**/.DS_Store
.eslintcache
.yarn/*
dist/*
node_modules/*
yarn.lock

# NEGATED PATTERNS
!/.*
Loading

0 comments on commit 0325a89

Please sign in to comment.