Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
a222d63
Merge pull request #4 from KitwareMedical/master
smjoshiatglobus Jan 12, 2024
4b1ee1d
unit test fix
smjoshiatglobus Jan 26, 2024
9818970
pipenv setup
smjoshiatglobus Jan 26, 2024
387cfb4
exclude DA type for deletion test
smjoshiatglobus Jan 26, 2024
bdaad70
fixed replacement tests
smjoshiatglobus Jan 26, 2024
a4bbcc9
black formatting
smjoshiatglobus Jan 26, 2024
f02873f
black formatting
smjoshiatglobus Jan 26, 2024
683c4ba
black formatting
smjoshiatglobus Jan 26, 2024
02ce585
silenced sourcery warnings
smjoshiatglobus Jan 26, 2024
6ea6eaa
support spellchecker
smjoshiatglobus Jan 26, 2024
8d31c5c
typos and spellcheck
smjoshiatglobus Jan 26, 2024
399d136
added issue number and link
smjoshiatglobus Jan 26, 2024
9780514
behaviour is correct spelling
smjoshiatglobus Jan 26, 2024
ee535a8
Fix for #63, can't set attribute
smjoshiatglobus Feb 22, 2024
3efe54f
Suppressed filename copying warning
smjoshiatglobus Feb 22, 2024
843465f
Merge pull request #5 from KitwareMedical/master
smjoshiatglobus Feb 26, 2024
2ec2a8d
Merge branch 'master' into fix_unit_test
smjoshiatglobus Feb 26, 2024
f6f8421
isinstance instead of type
smjoshiatglobus Feb 26, 2024
2d53d34
Remove unused code
smjoshiatglobus Feb 26, 2024
f5bfe2c
black formatting
smjoshiatglobus Jan 26, 2024
da91c4f
silenced sourcery warnings
smjoshiatglobus Jan 26, 2024
2f07e17
support spellchecker
smjoshiatglobus Jan 26, 2024
893ce24
typos and spellcheck
smjoshiatglobus Jan 26, 2024
9af7d7c
added issue number and link
smjoshiatglobus Jan 26, 2024
ad6b05a
behaviour is correct spelling
smjoshiatglobus Jan 26, 2024
bc08b06
Fix for #63, can't set attribute
smjoshiatglobus Feb 22, 2024
0872799
Suppressed filename copying warning
smjoshiatglobus Feb 22, 2024
428ccb3
ENH: Add dicom fields scrapping script
pchoisel Jan 15, 2024
2aae45f
isinstance instead of type
smjoshiatglobus Feb 26, 2024
af2f02c
Remove unused code
smjoshiatglobus Feb 26, 2024
89e302d
Merge branch 'fix_unit_test' of github.com:globusmedical/dicom-anonym…
smjoshiatglobus Feb 28, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
support spellchecker
  • Loading branch information
smjoshiatglobus committed Jan 26, 2024
commit 6ea6eaa121a3ba1e7a2c7da8107f68c24e2990a6
30 changes: 30 additions & 0 deletions cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
// cSpell Settings
{
// Version of the setting file. Always 0.2
"version": "0.2",
// language - current active spelling language
"language": "en",
// ignorepaths - list of glob patterns for files to ignore
"ignorePaths": [
"ext",
"*.json",
"Pipfile.lock",
"**/tests"
],
// words - list of words to be always considered correct
"words": [
"dcmread",
"DICOM",
"dicomfields",
"multival",
"pydicom",
"simpledicomanonymizer",
"xgggg"
]
// flagWords - list of words to be always considered incorrect
// This is useful for offensive words and common spelling errors.
// For example "hte" should be "the"
// "flagWords": [
// "hte"
// ]
}