├── .gitignore ├── .travis.yml ├── COPYING ├── COPYING.LESSER ├── Dockerfile ├── MANIFEST.in ├── Makefile ├── README.rst ├── download_lt.py ├── language-check ├── language_check ├── __init__.py ├── __main__.py ├── backports │ ├── __init__.py │ └── subprocess.py ├── console_mode.py ├── main.py └── which.py ├── run_doctest.py ├── setup.cfg ├── setup.py ├── test.bash ├── test.py └── test_remote.bash /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/language-check/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/language-check/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/language-check/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/language-check/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/language-check/HEAD/Dockerfile -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/language-check/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/language-check/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/language-check/HEAD/README.rst -------------------------------------------------------------------------------- /download_lt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/language-check/HEAD/download_lt.py -------------------------------------------------------------------------------- /language-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/language-check/HEAD/language-check -------------------------------------------------------------------------------- /language_check/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/language-check/HEAD/language_check/__init__.py -------------------------------------------------------------------------------- /language_check/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/language-check/HEAD/language_check/__main__.py -------------------------------------------------------------------------------- /language_check/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /language_check/backports/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/language-check/HEAD/language_check/backports/subprocess.py -------------------------------------------------------------------------------- /language_check/console_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/language-check/HEAD/language_check/console_mode.py -------------------------------------------------------------------------------- /language_check/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/language-check/HEAD/language_check/main.py -------------------------------------------------------------------------------- /language_check/which.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/language-check/HEAD/language_check/which.py -------------------------------------------------------------------------------- /run_doctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/language-check/HEAD/run_doctest.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/language-check/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/language-check/HEAD/setup.py -------------------------------------------------------------------------------- /test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/language-check/HEAD/test.bash -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/language-check/HEAD/test.py -------------------------------------------------------------------------------- /test_remote.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myint/language-check/HEAD/test_remote.bash --------------------------------------------------------------------------------