From 3cac7f70ea2449e1ad4186fb5431a104b8505ce5 Mon Sep 17 00:00:00 2001 From: Bruno Tavares Date: Thu, 24 Jan 2019 14:07:19 -0200 Subject: [PATCH] Add link to linters and autofixers This commit points to a quite alpha, but working set of linters. For linters which support autofixing issues, the actions are also capable of either automatically fixing on `push`, and or autofixing via Review comments. So far, list list contains the following linters (and more to come): | Action | Description | Lint on Push | Fix with Review | Autofix on Push | |------------------------------|-------------------------------|--------------|-------------------|-------------------| | cljfmt | Clojure formatter | x | x | x | | clippy | Rust linter | x | x (Partial fixes) | x (Partial fixes) | | dartfmt | Dart (and Flutter) formatter | x | x | x | | pwshfmt | Powershell Formatter | x | x | x | | rubocop | Ruby linter | x | x | x | | rustfmt | Rust formatter | x | x | x | | shfmt | Shell formatter | x | x | x | | tslint | TypeScript lint and formatter | x | x | x | | dartanalyzer | Dart (and Flutter) linter | x | | | | hadolint | Dockerfile linter | x | | | | kubeval | Kubernets (k8s) linter | x | | | | mdlint | Markdown linting | x | | | | shellcheck | Bash linter | x | | | --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index da22e5c..73f8fb5 100644 --- a/README.md +++ b/README.md @@ -76,6 +76,8 @@ Actions are triggered by GitHub platform events directly in a repo and run on-de - [GraphQL Inspector Action](https://github.com/kamilkisiela/graphql-inspector) - [Build Hugo static content site and publish it to gh-pages branch](https://github.com/khanhicetea/gh-actions-hugo-deploy-gh-pages) +### Collection of actions +- [Many linters and autofixers for various languages../](https://github.com/bltavares/actions) ### Tutorials