├── .bzrignore ├── .gitignore ├── .scspell ├── dictionary.txt └── dictionary.txt.fileids.json ├── .travis.yml ├── COPYING.txt ├── MANIFEST.in ├── Makefile ├── README.rst ├── SCOWL-LICENSE.txt ├── __main__.py ├── pyproject.toml ├── scspell ├── __init__.py ├── __main__.py ├── _corpus.py ├── _portable.py ├── _util.py └── data │ └── dictionary.txt ├── setup.cfg ├── test.cram ├── tests ├── basedicts │ ├── addtodict │ ├── base-dictionary-1 │ ├── base-dictionary-2 │ ├── base-dictionary-2.filtered │ ├── dictionary │ └── testfile ├── fileidmap │ ├── custom.ext │ ├── dictionary │ ├── dictionary.fileids.json │ ├── dictionary.fileids.json.post │ ├── dictionary.post │ ├── inputfile.txt │ ├── inputfile2.txt │ ├── mix1.txt │ ├── mix2.txt │ ├── mix3.txt │ ├── mix4.txt │ └── mix5.txt ├── test_additional_extensions.py └── test_callable_report.py └── tox.ini /.bzrignore: -------------------------------------------------------------------------------- 1 | dist 2 | MANIFEST 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/.gitignore -------------------------------------------------------------------------------- /.scspell/dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/.scspell/dictionary.txt -------------------------------------------------------------------------------- /.scspell/dictionary.txt.fileids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/.scspell/dictionary.txt.fileids.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/COPYING.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/README.rst -------------------------------------------------------------------------------- /SCOWL-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/SCOWL-LICENSE.txt -------------------------------------------------------------------------------- /__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/__main__.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scspell/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/scspell/__init__.py -------------------------------------------------------------------------------- /scspell/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/scspell/__main__.py -------------------------------------------------------------------------------- /scspell/_corpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/scspell/_corpus.py -------------------------------------------------------------------------------- /scspell/_portable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/scspell/_portable.py -------------------------------------------------------------------------------- /scspell/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/scspell/_util.py -------------------------------------------------------------------------------- /scspell/data/dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/scspell/data/dictionary.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /test.cram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/test.cram -------------------------------------------------------------------------------- /tests/basedicts/addtodict: -------------------------------------------------------------------------------- 1 | FILETYPE: Python; .py 2 | 3 | NATURAL: 4 | -------------------------------------------------------------------------------- /tests/basedicts/base-dictionary-1: -------------------------------------------------------------------------------- 1 | NATURAL: 2 | hoth 3 | yavin 4 | -------------------------------------------------------------------------------- /tests/basedicts/base-dictionary-2: -------------------------------------------------------------------------------- 1 | NATURAL: 2 | ammonia 3 | bakingsoda 4 | lye 5 | -------------------------------------------------------------------------------- /tests/basedicts/base-dictionary-2.filtered: -------------------------------------------------------------------------------- 1 | NATURAL: 2 | bakingsoda 3 | 4 | -------------------------------------------------------------------------------- /tests/basedicts/dictionary: -------------------------------------------------------------------------------- 1 | NATURAL: 2 | cromulent 3 | embiggen 4 | -------------------------------------------------------------------------------- /tests/basedicts/testfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/tests/basedicts/testfile -------------------------------------------------------------------------------- /tests/fileidmap/custom.ext: -------------------------------------------------------------------------------- 1 | def func(**kwargs): 2 | pass 3 | -------------------------------------------------------------------------------- /tests/fileidmap/dictionary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/tests/fileidmap/dictionary -------------------------------------------------------------------------------- /tests/fileidmap/dictionary.fileids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/tests/fileidmap/dictionary.fileids.json -------------------------------------------------------------------------------- /tests/fileidmap/dictionary.fileids.json.post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/tests/fileidmap/dictionary.fileids.json.post -------------------------------------------------------------------------------- /tests/fileidmap/dictionary.post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/tests/fileidmap/dictionary.post -------------------------------------------------------------------------------- /tests/fileidmap/inputfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/tests/fileidmap/inputfile.txt -------------------------------------------------------------------------------- /tests/fileidmap/inputfile2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/tests/fileidmap/inputfile2.txt -------------------------------------------------------------------------------- /tests/fileidmap/mix1.txt: -------------------------------------------------------------------------------- 1 | maresy doats 2 | -------------------------------------------------------------------------------- /tests/fileidmap/mix2.txt: -------------------------------------------------------------------------------- 1 | endosey doates 2 | -------------------------------------------------------------------------------- /tests/fileidmap/mix3.txt: -------------------------------------------------------------------------------- 1 | nliddle lamsy tivy 2 | -------------------------------------------------------------------------------- /tests/fileidmap/mix4.txt: -------------------------------------------------------------------------------- 1 | kiddsly tivytoo 2 | -------------------------------------------------------------------------------- /tests/fileidmap/mix5.txt: -------------------------------------------------------------------------------- 1 | woodn tyoo 2 | -------------------------------------------------------------------------------- /tests/test_additional_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/tests/test_additional_extensions.py -------------------------------------------------------------------------------- /tests/test_callable_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/tests/test_callable_report.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/scspell/HEAD/tox.ini --------------------------------------------------------------------------------