-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added custom dictionaries for MDM and macOS terms
- Loading branch information
1 parent
e0c1087
commit d170f54
Showing
4 changed files
with
44 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,38 @@ | ||
{ | ||
"version": "0.2", | ||
"ignorePaths": [".prettierrc*", ".vscode/*", "*.lock", "node_modules/"], | ||
"dictionaryDefinitions": [], | ||
"dictionaries": [], | ||
"words": [ | ||
"Addigy", | ||
"AppleScript", | ||
"dgrdev", | ||
"Jamf", | ||
"iCal", | ||
"Intune", | ||
"Kandji", | ||
"LaunchServices", | ||
"LSRegister", | ||
"Mosyle", | ||
"MSDA", | ||
"Munki", | ||
"Sonoma", | ||
"UTI", | ||
"WebCal" | ||
"dictionaryDefinitions": [ | ||
{ | ||
"name": "macOS", | ||
"description": "macOS terms and concepts.", | ||
"path": "./dicts/macOS.txt" | ||
}, | ||
{ | ||
"name": "MDMs", | ||
"description": "Mobile Device Management (MDM) solution terms and concepts.", | ||
"path": "./dicts/MDMs.txt" | ||
} | ||
], | ||
"dictionaries": [ | ||
"bash", | ||
"filetypes", | ||
"macOS", | ||
"MDMs", | ||
"misc", | ||
"node", | ||
"npm", | ||
"typescript" | ||
], | ||
"words": ["dgrdev", "MSDA"], | ||
"ignoreWords": [ | ||
"argparse", | ||
"assocs", | ||
"bools", | ||
"cryptexes", | ||
"edgemac", | ||
"linebreak", | ||
"lproj", | ||
"mdfind", | ||
"osascript", | ||
"preboot", | ||
"shellcheck", | ||
"shtm", | ||
"targendaz2", | ||
"trivago", | ||
"tseslint", | ||
"utis" | ||
"tseslint" | ||
], | ||
"import": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Addigy | ||
Intune | ||
Jamf | ||
Kandji | ||
Mosyle | ||
Munki |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
AppleScript | ||
cryptexes | ||
iCal | ||
LaunchServices | ||
LSRegister | ||
mdfind | ||
osascript | ||
preboot | ||
Sonoma | ||
UTI | ||
UTIs | ||
WebCal |