├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ └── test.yml ├── LICENSE.md ├── Makefile ├── README.md └── flymake-flycheck.el /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: sanityinc 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purcell/flymake-flycheck/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purcell/flymake-flycheck/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purcell/flymake-flycheck/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purcell/flymake-flycheck/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purcell/flymake-flycheck/HEAD/README.md -------------------------------------------------------------------------------- /flymake-flycheck.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purcell/flymake-flycheck/HEAD/flymake-flycheck.el --------------------------------------------------------------------------------