├── .devcontainer └── devcontainer.json ├── .github ├── header.jpg └── workflows │ ├── lint.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.org ├── src ├── checkers │ ├── flymake-collection-awk-gawk.el │ ├── flymake-collection-bandit.el │ ├── flymake-collection-bashate.el │ ├── flymake-collection-clang-tidy.el │ ├── flymake-collection-clang.el │ ├── flymake-collection-codespell.el │ ├── flymake-collection-eslint.el │ ├── flymake-collection-flake8.el │ ├── flymake-collection-gcc.el │ ├── flymake-collection-hlint.el │ ├── flymake-collection-html-tidy.el │ ├── flymake-collection-janet.el │ ├── flymake-collection-jq.el │ ├── flymake-collection-jsonlint.el │ ├── flymake-collection-kube-linter.el │ ├── flymake-collection-less.el │ ├── flymake-collection-lua.el │ ├── flymake-collection-luacheck.el │ ├── flymake-collection-markdownlint.el │ ├── flymake-collection-mypy.el │ ├── flymake-collection-nasm.el │ ├── flymake-collection-proselint.el │ ├── flymake-collection-pycodestyle.el │ ├── flymake-collection-pylint.el │ ├── flymake-collection-pyre.el │ ├── flymake-collection-rubocop.el │ ├── flymake-collection-ruff.el │ ├── flymake-collection-shellcheck.el │ ├── flymake-collection-sql-lint.el │ ├── flymake-collection-sqlint.el │ ├── flymake-collection-statix.el │ ├── flymake-collection-vale.el │ ├── flymake-collection-xmllint.el │ └── flymake-collection-yamllint.el ├── flymake-collection-commands.el ├── flymake-collection-define.el ├── flymake-collection-hook.el └── flymake-collection.el └── tests └── checkers ├── Dockerfile ├── README.org ├── installers ├── bandit.bash ├── bashate.bash ├── clang-tidy.bash ├── codespell.bash ├── flake8.bash ├── hlint.bash ├── janet.bash ├── jq.bash ├── kube-linter.bash ├── mypy.bash ├── nasm.bash ├── pylint.bash ├── pyre.bash ├── ruff.bash ├── statix.bash └── vale.bash ├── run-test-case └── test-cases ├── bandit.yml ├── bashate.yml ├── codespell.yml ├── flake8.yml ├── hlint.yml ├── janet.yml ├── jq.yml ├── kube-linter.yml ├── mypy.yml ├── nasm.yml ├── pylint.yml ├── ruff.yml ├── statix.yml └── vale.yml /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/.github/header.jpg -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | /bin/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/Makefile -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/README.org -------------------------------------------------------------------------------- /src/checkers/flymake-collection-awk-gawk.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-awk-gawk.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-bandit.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-bandit.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-bashate.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-bashate.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-clang-tidy.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-clang-tidy.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-clang.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-clang.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-codespell.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-codespell.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-eslint.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-eslint.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-flake8.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-flake8.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-gcc.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-gcc.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-hlint.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-hlint.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-html-tidy.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-html-tidy.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-janet.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-janet.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-jq.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-jq.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-jsonlint.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-jsonlint.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-kube-linter.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-kube-linter.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-less.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-less.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-lua.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-lua.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-luacheck.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-luacheck.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-markdownlint.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-markdownlint.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-mypy.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-mypy.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-nasm.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-nasm.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-proselint.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-proselint.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-pycodestyle.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-pycodestyle.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-pylint.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-pylint.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-pyre.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-pyre.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-rubocop.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-rubocop.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-ruff.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-ruff.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-shellcheck.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-shellcheck.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-sql-lint.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-sql-lint.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-sqlint.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-sqlint.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-statix.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-statix.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-vale.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-vale.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-xmllint.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-xmllint.el -------------------------------------------------------------------------------- /src/checkers/flymake-collection-yamllint.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/checkers/flymake-collection-yamllint.el -------------------------------------------------------------------------------- /src/flymake-collection-commands.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/flymake-collection-commands.el -------------------------------------------------------------------------------- /src/flymake-collection-define.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/flymake-collection-define.el -------------------------------------------------------------------------------- /src/flymake-collection-hook.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/flymake-collection-hook.el -------------------------------------------------------------------------------- /src/flymake-collection.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/src/flymake-collection.el -------------------------------------------------------------------------------- /tests/checkers/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/tests/checkers/Dockerfile -------------------------------------------------------------------------------- /tests/checkers/README.org: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/checkers/installers/bandit.bash: -------------------------------------------------------------------------------- 1 | python3 -m pip install bandit 2 | -------------------------------------------------------------------------------- /tests/checkers/installers/bashate.bash: -------------------------------------------------------------------------------- 1 | python3 -m pip install bashate 2 | -------------------------------------------------------------------------------- /tests/checkers/installers/clang-tidy.bash: -------------------------------------------------------------------------------- 1 | apt-get install -y clang-tidy 2 | -------------------------------------------------------------------------------- /tests/checkers/installers/codespell.bash: -------------------------------------------------------------------------------- 1 | python3 -m pip install codespell 2 | -------------------------------------------------------------------------------- /tests/checkers/installers/flake8.bash: -------------------------------------------------------------------------------- 1 | python3.8 -m pip install flake8 2 | -------------------------------------------------------------------------------- /tests/checkers/installers/hlint.bash: -------------------------------------------------------------------------------- 1 | apt-get install -y hlint 2 | -------------------------------------------------------------------------------- /tests/checkers/installers/janet.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/tests/checkers/installers/janet.bash -------------------------------------------------------------------------------- /tests/checkers/installers/jq.bash: -------------------------------------------------------------------------------- 1 | apt-get install -y jq 2 | -------------------------------------------------------------------------------- /tests/checkers/installers/kube-linter.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/tests/checkers/installers/kube-linter.bash -------------------------------------------------------------------------------- /tests/checkers/installers/mypy.bash: -------------------------------------------------------------------------------- 1 | python3.8 -m pip install mypy 2 | -------------------------------------------------------------------------------- /tests/checkers/installers/nasm.bash: -------------------------------------------------------------------------------- 1 | apt-get install -y nasm 2 | -------------------------------------------------------------------------------- /tests/checkers/installers/pylint.bash: -------------------------------------------------------------------------------- 1 | python3.8 -m pip install pylint 2 | -------------------------------------------------------------------------------- /tests/checkers/installers/pyre.bash: -------------------------------------------------------------------------------- 1 | python3 -m pip install pyre-check 2 | -------------------------------------------------------------------------------- /tests/checkers/installers/ruff.bash: -------------------------------------------------------------------------------- 1 | python3.8 -m pip install ruff 2 | -------------------------------------------------------------------------------- /tests/checkers/installers/statix.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/tests/checkers/installers/statix.bash -------------------------------------------------------------------------------- /tests/checkers/installers/vale.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/tests/checkers/installers/vale.bash -------------------------------------------------------------------------------- /tests/checkers/run-test-case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/tests/checkers/run-test-case -------------------------------------------------------------------------------- /tests/checkers/test-cases/bandit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/tests/checkers/test-cases/bandit.yml -------------------------------------------------------------------------------- /tests/checkers/test-cases/bashate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/tests/checkers/test-cases/bashate.yml -------------------------------------------------------------------------------- /tests/checkers/test-cases/codespell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/tests/checkers/test-cases/codespell.yml -------------------------------------------------------------------------------- /tests/checkers/test-cases/flake8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/tests/checkers/test-cases/flake8.yml -------------------------------------------------------------------------------- /tests/checkers/test-cases/hlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/tests/checkers/test-cases/hlint.yml -------------------------------------------------------------------------------- /tests/checkers/test-cases/janet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/tests/checkers/test-cases/janet.yml -------------------------------------------------------------------------------- /tests/checkers/test-cases/jq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/tests/checkers/test-cases/jq.yml -------------------------------------------------------------------------------- /tests/checkers/test-cases/kube-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/tests/checkers/test-cases/kube-linter.yml -------------------------------------------------------------------------------- /tests/checkers/test-cases/mypy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/tests/checkers/test-cases/mypy.yml -------------------------------------------------------------------------------- /tests/checkers/test-cases/nasm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/tests/checkers/test-cases/nasm.yml -------------------------------------------------------------------------------- /tests/checkers/test-cases/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/tests/checkers/test-cases/pylint.yml -------------------------------------------------------------------------------- /tests/checkers/test-cases/ruff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/tests/checkers/test-cases/ruff.yml -------------------------------------------------------------------------------- /tests/checkers/test-cases/statix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/tests/checkers/test-cases/statix.yml -------------------------------------------------------------------------------- /tests/checkers/test-cases/vale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohkale/flymake-collection/HEAD/tests/checkers/test-cases/vale.yml --------------------------------------------------------------------------------