├── .github ├── dependabot.yml └── workflows │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── Eask ├── LICENSE ├── Makefile ├── README.md ├── etc ├── logo.png └── screenshot.png ├── flycheck-grammarly.el └── test └── doc.txt /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-grammarly/flycheck-grammarly/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-grammarly/flycheck-grammarly/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-grammarly/flycheck-grammarly/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-grammarly/flycheck-grammarly/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Eask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-grammarly/flycheck-grammarly/HEAD/Eask -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-grammarly/flycheck-grammarly/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-grammarly/flycheck-grammarly/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-grammarly/flycheck-grammarly/HEAD/README.md -------------------------------------------------------------------------------- /etc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-grammarly/flycheck-grammarly/HEAD/etc/logo.png -------------------------------------------------------------------------------- /etc/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-grammarly/flycheck-grammarly/HEAD/etc/screenshot.png -------------------------------------------------------------------------------- /flycheck-grammarly.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-grammarly/flycheck-grammarly/HEAD/flycheck-grammarly.el -------------------------------------------------------------------------------- /test/doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-grammarly/flycheck-grammarly/HEAD/test/doc.txt --------------------------------------------------------------------------------