Skip to content

Commit

Permalink
feat: add words, add commonly used settings
Browse files Browse the repository at this point in the history
  • Loading branch information
ITProKyle committed Mar 27, 2024
1 parent 44e35b8 commit 593cea8
Show file tree
Hide file tree
Showing 8 changed files with 2,226 additions and 2,197 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ repos:
)$
- id: pretty-format-json
args: [--autofix, --indent, '4']
files: |
exclude: |
(?x)^(
\.vscode/.*\.json
(.*)?(cdk|package|tsconfig|tslint).json
)$
- id: pretty-format-json
args: [--autofix, --indent, '2']
files: |
(?x)^(
(.*)?package\.json
(.*)?(cdk|package|tsconfig|tslint).json
)$
- id: trailing-whitespace
- id: mixed-line-ending
Expand All @@ -49,7 +49,7 @@ repos:
- mdformat-gfm
- mdformat-toc
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.38.0
rev: v0.39.0
hooks:
- id: markdownlint
language_version: lts
24 changes: 1 addition & 23 deletions .vscode/cspell.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,11 @@
{
"allowCompoundWords": true,
"ignorePaths": [
"**/.cache",
"**/.git/**",
"**/.vscode/extensions.json",
"**/node_modules/**",
"**/package-lock.json",
"**/package.json",
"**/poetry.lock"
"**/cspell-ext.json"
],
"import": [
"../cspell-ext.json"
],
"language": "en",
"languageSettings": [
{
"allowCompoundWords": true,
"dictionaries": [
"python"
],
"languageId": "toml"
},
{
"dictionaries": [
"bash"
],
"languageId": "*"
}
],
"maxNumberOfProblems": 100,
"version": "0.2",
"words": []
Expand Down
69 changes: 57 additions & 12 deletions cspell-ext.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,70 @@
{
"id": "finley",
"name": "ITProKyle",
"description": "Personal dictionary of Kyle Finley (ITProKyle).",
"readonly": true,
"dictionaries": [
"python",
"softwareTerms"
],
"dictionaryDefinitions": [
{
"description": "Personal dictionary of Kyle Finley (ITProKyle).",
"name": "finley",
"path": "finley.txt.gz",
"description": "Personal dictionary of Kyle Finley (ITProKyle)."
"path": "finley.txt.gz"
}
],
"dictionaries": [],
"flagWords": [
"cider",
"transite",
"wether"
],
"id": "finley",
"ignorePaths": [
"**/*.gzip",
"**/*.tar*",
"**/.cache",
"**/.git",
"**/.terraform.lock.hcl",
"**/.venv/**",
"**/.vscode/cspell.json",
"**/.vscode/extensions.json",
"**/artifacts/**",
"**/build/**",
"**/cdk.json",
"**/dist/**",
"**/node_modules/**",
"**/package-lock.json",
"**/poetry.lock",
"**/reports/**",
"**/requirements.txt",
"**/tsconfig.json",
"**/typings/**"
],
"language": "en",
"languageSettings": [
{
"dictionaries": [
"finley"
],
"dictionaryDefinitions": [],
"ignoreRegExpList": [],
"includeRegExpList": [],
"languageId": "*",
"locale": "*",
"includeRegExpList": [],
"ignoreRegExpList": [],
"patterns": [],
"dictionaries": ["finley"],
"dictionaryDefinitions": []
"patterns": []
},
{
"allowCompoundWords": true,
"dictionaries": [
"python"
],
"languageId": "toml"
},
{
"dictionaries": [
"bash"
],
"languageId": "*"
}
]
],
"name": "ITProKyle",
"readonly": true
}
8 changes: 7 additions & 1 deletion finley.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
*ARN*
*ARNs
*UUIDs*
*UUID*
*env
*envs
*uuid*
Expand Down Expand Up @@ -127,6 +127,7 @@ numpy
nvmrc
ohmyzsh
onboarded
pipx
platformdirs
printf
purrgil
Expand All @@ -146,12 +147,15 @@ recommonmark
recreatable
redhat
rglob
rstcheck
rtype
sdist
secho
setenv
shellcheckrc
shellenv
signin
sphinxcontrib
stubber
stubbers
substr
Expand All @@ -168,6 +172,8 @@ tomli
tomlsort
tryceratops
turingpi
tzlocal
tzutc
unconfigured
undoc
unhashable
Expand Down
Loading

0 comments on commit 593cea8

Please sign in to comment.