superlint/README.md

247 lines
16 KiB
Markdown
Raw Normal View History

2019-10-21 10:12:50 -04:00
# Super-Linter
2020-06-25 11:04:02 -04:00
This repository is for the **GitHub Action** to run a **Super-Linter**.
It is a simple combination of various linters, written in `bash`, to help validate your source code.
2020-04-30 10:06:20 -04:00
The end goal of this tool:
- Prevent broken code from being uploaded to the default branch (Usually `master`)
2020-04-30 10:06:20 -04:00
- Help establish coding best practices across multiple languages
- Build guidelines for code layout and format
- Automate the process to help streamline code reviews
2020-06-25 20:08:05 -04:00
## Table of Contents
2020-06-25 20:22:10 -04:00
- [How it works](#how-it-works)
- [Supported linters](#supported-linters)
- [Usage](#how-to-use)
- [Environment variables](#environment-variables)
- [Disable rules](#disabling-rules)
- [Docker Hub](#docker-hub)
2020-07-14 20:14:01 -04:00
- [Run Super-Linter outside GitHub Actions](#run-super-linter-outside-github-actions)
2020-06-25 20:22:10 -04:00
- [Limitations](#limitations)
- [Contributing](#how-to-contribute)
2020-06-25 20:08:05 -04:00
## How it Works
The super-linter finds issues and reports them to the console output. Fixes are suggested in the console output but not automatically fixed, and a status check will show up as failed on the pull request.
2020-06-24 15:45:26 -04:00
The design of the **Super-Linter** is currently to allow linting to occur in **GitHub Actions** as a part of continuous integration occurring on pull requests as the commits get pushed. It works best when commits are being pushed early and often to a branch with an open or draft pull request. There is some desire to move this closer to local development for faster feedback on linting errors but this is not yet supported.
## Supported Linters
2020-04-30 10:06:20 -04:00
Developers on **GitHub** can call the **GitHub Action** to lint their code base with the following list of linters:
2019-10-21 10:12:50 -04:00
| *Language* | *Linter* |
| --- | --- |
| **Ansible** | [ansible-lint](https://github.com/ansible/ansible-lint) |
2020-07-02 17:31:16 -04:00
| **Azure Resource Manager (ARM)** | [arm-ttk](https://github.com/azure/arm-ttk) |
2020-06-29 16:25:05 -04:00
| **AWS CloudFormation templates** | [cfn-lint](https://github.com/aws-cloudformation/cfn-python-lint/) |
| **CSS** | [stylelint](https://stylelint.io/) |
2020-06-19 14:30:28 -04:00
| **Clojure** | [clj-kondo](https://github.com/borkdude/clj-kondo) |
| **CoffeeScript** | [coffeelint](https://coffeelint.github.io/) |
2020-07-06 18:06:56 -04:00
| **Dart** | [dartanalyzer](https://dart.dev/guides/language/analysis-options) |
| **Dockerfile** | [dockerfilelint](https://github.com/replicatedhq/dockerfilelint.git) |
| **EDITORCONFIG** | [editorconfig-checker](https://github.com/editorconfig-checker/editorconfig-checker) |
2020-06-29 16:25:05 -04:00
| **ENV** | [dotenv-linter](https://github.com/dotenv-linter/dotenv-linter) |
| **Golang** | [golangci-lint](https://github.com/golangci/golangci-lint) |
2020-07-04 18:14:27 -04:00
| **HTMLHint** | [HTMLHint](https://github.com/htmlhint/HTMLHint) |
| **JavaScript** | [eslint](https://eslint.org/) [standard js](https://standardjs.com/) |
| **JSON** | [jsonlint](https://github.com/zaach/jsonlint) |
2020-06-29 16:25:05 -04:00
| **Kotlin** | [ktlint](https://github.com/pinterest/ktlint) |
| **Markdown** | [markdownlint](https://github.com/igorshubovych/markdownlint-cli#readme) |
2020-06-29 16:25:05 -04:00
| **OpenAPI** | [spectral](https://github.com/stoplightio/spectral) |
| **Perl** | [perl](https://pkgs.alpinelinux.org/package/edge/main/x86/perl) |
2020-06-18 13:53:24 -04:00
| **PHP** | [PHP](https://www.php.net/) |
2020-06-29 16:25:05 -04:00
| **PowerShell** | [PSScriptAnalyzer](https://github.com/PowerShell/Psscriptanalyzer) |
| **Protocol Buffers** | [protolint](https://github.com/yoheimuta/protolint) |
| **Python3** | [pylint](https://www.pylint.org/) |
2020-07-05 22:21:13 -04:00
| **Raku** | [raku](https://raku.org) |
| **Ruby** | [RuboCop](https://github.com/rubocop-hq/rubocop) |
| **Shell** | [Shellcheck](https://github.com/koalaman/shellcheck) |
| **Terraform** | [tflint](https://github.com/terraform-linters/tflint) |
| **TypeScript** | [eslint](https://eslint.org/) [standard js](https://standardjs.com/) |
| **XML** | [LibXML](http://xmlsoft.org/) |
| **YAML** | [YamlLint](https://github.com/adrienverge/yamllint) |
2019-10-21 10:12:50 -04:00
## How to use
2020-07-01 12:38:15 -04:00
More in-depth [tutorial](https://www.youtube.com/watch?v=EDAmFKO4Zt0&t=118s) available
2020-06-30 19:45:08 -04:00
2019-10-21 10:12:50 -04:00
To use this **GitHub** Action you will need to complete the following:
2020-06-30 19:27:52 -04:00
1. Create a new file in your repository called `.github/workflows/linter.yml`
2020-06-30 19:45:08 -04:00
2. Copy the example workflow from below into that new file, no extra configuration required
2020-06-30 19:27:52 -04:00
3. Commit that file to a new branch
4. Open up a pull request and observe the action working
5. Enjoy your more *stable*, and *cleaner* code base
6. Check out the [Wiki](https://github.com/github/super-linter/wiki) for customization options
2019-10-21 10:12:50 -04:00
2020-07-20 15:07:56 -04:00
**NOTE:** You will need the *Environment* variable `GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}` set in your workflow file to be able to use the multiple status API returns. There is no need to set the **GitHub** Secret, it only needs to be passed.
2019-10-23 13:23:46 -04:00
### Example connecting GitHub Action Workflow
2020-02-05 10:23:47 -05:00
In your repository you should have a `.github/workflows` folder with **GitHub** Action similar to below:
2019-10-21 10:12:50 -04:00
- `.github/workflows/linter.yml`
This file should have the following code:
```yml
---
###########################
###########################
## Linter GitHub Actions ##
###########################
###########################
name: Lint Code Base
#
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#
#############################
# Start the job on all push #
#############################
2020-03-03 13:07:43 -05:00
on:
push:
2020-07-01 19:29:23 -04:00
branches-ignore: [master]
2020-07-01 19:34:44 -04:00
# Remove the line above to run when pushing to master
2020-07-01 19:29:23 -04:00
pull_request:
branches: [master]
2019-10-21 10:12:50 -04:00
###############
# Set the Job #
###############
jobs:
build:
# Name the Job
name: Lint Code Base
# Set the agent to run on
runs-on: ubuntu-latest
##################
# Load all steps #
##################
steps:
##########################
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v2
2019-10-21 10:12:50 -04:00
################################
# Run Linter against code base #
################################
- name: Lint Code Base
2020-06-29 12:42:18 -04:00
uses: docker://github/super-linter:v3
2019-10-25 12:29:31 -04:00
env:
VALIDATE_ALL_CODEBASE: false
2020-07-01 09:29:22 -04:00
DEFAULT_BRANCH: master
2020-07-20 15:07:56 -04:00
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2020-07-01 09:29:22 -04:00
2019-10-21 10:12:50 -04:00
...
```
2020-01-09 10:48:46 -05:00
2020-07-07 09:15:20 -04:00
**NOTE:**
2020-06-30 10:17:32 -04:00
Using the line:`uses: docker://github/super-linter:v3` will pull the image down from **DockerHub** and run the **GitHub Super-Linter**. Using the line: `uses: github/super-linter@v3` will build and compile the **GitHub Super-Linter** at build time. *This can be far more costly in time...*
2020-06-19 11:18:45 -04:00
2020-05-14 09:57:58 -04:00
## Environment variables
The super-linter allows you to pass the following `ENV` variables to be able to trigger different functionality.
2020-06-25 11:04:02 -04:00
*Note:* All the `VALIDATE_[LANGUAGE]` variables behave in a specific way.
If none of them are passed, then they all default to true.
However if any one of the variables are set, we default to leaving any unset variable to false.
2020-06-18 16:13:20 -04:00
This means that if you run the linter "out of the box", all languages will be checked.
But if you wish to select specific linters, we give you full control to choose which linters are run,
and won't run anything unexpected.
2020-05-14 09:57:58 -04:00
| **ENV VAR** | **Default Value** | **Notes** |
| --- | --- | --- |
| **VALIDATE_ALL_CODEBASE** | `true` | Will parse the entire repository and find all files to validate across all types. **NOTE:** When set to `false`, only **new** or **edited** files will be parsed for validation. |
2020-06-18 17:06:52 -04:00
| **DEFAULT_BRANCH** | `master` | The name of the repository default branch. |
2020-06-23 08:59:14 -04:00
| **LINTER_RULES_PATH** | `.github/linters` | Directory for all linter configuration rules. |
2020-05-14 09:57:58 -04:00
| **VALIDATE_YAML** | `true` |Flag to enable or disable the linting process of the language. |
| **VALIDATE_JSON** | `true` | Flag to enable or disable the linting process of the language. |
| **VALIDATE_XML** | `true` | Flag to enable or disable the linting process of the language. |
| **VALIDATE_MD** | `true` | Flag to enable or disable the linting process of the language. |
| **VALIDATE_BASH** | `true` | Flag to enable or disable the linting process of the language. |
| **VALIDATE_PERL** | `true` | Flag to enable or disable the linting process of the language. |
2020-07-05 22:21:13 -04:00
| **VALIDATE_RAKU** | `true` | Flag to enable or disable the linting process of the language. |
2020-06-18 13:53:24 -04:00
| **VALIDATE_PHP** | `true` | Flag to enable or disable the linting process of the language. |
2020-05-14 09:57:58 -04:00
| **VALIDATE_PYTHON** | `true` | Flag to enable or disable the linting process of the language. |
| **VALIDATE_RUBY** | `true` | Flag to enable or disable the linting process of the language. |
2020-06-26 15:21:37 -04:00
| **RUBY_CONFIG_FILE** | `.ruby-lint.yml` | Filename for [rubocop configuration](https://docs.rubocop.org/rubocop/configuration.html) (ex: `.ruby-lint.yml`, `.rubocop.yml`)|
2020-05-14 09:57:58 -04:00
| **VALIDATE_COFFEE** | `true` | Flag to enable or disable the linting process of the language . |
| **VALIDATE_ANSIBLE** | `true` | Flag to enable or disable the linting process of the language. |
| **VALIDATE_JAVASCRIPT_ES** | `true` | Flag to enable or disable the linting process of the language. (Utilizing: eslint) |
| **JAVASCRIPT_ES_CONFIG_FILE** | `.eslintrc.yml` | Filename for [eslint configuration](https://eslint.org/docs/user-guide/configuring#configuration-file-formats) (ex: `.eslintrc.yml`, `.eslintrc.json`)|
2020-05-14 09:57:58 -04:00
| **VALIDATE_JAVASCRIPT_STANDARD** | `true` | Flag to enable or disable the linting process of the language. (Utilizing: standard) |
2020-07-07 09:15:20 -04:00
| **VALIDATE_JSX** | `true` | Flag to enable or disable the linting process for jsx files (Utilizing: eslint) |
| **VALIDATE_TSX** | `true` | Flag to enable or disable the linting process for tsx files (Utilizing: eslint) |
2020-05-14 09:57:58 -04:00
| **VALIDATE_TYPESCRIPT_ES** | `true` | Flag to enable or disable the linting process of the language. (Utilizing: eslint) |
2020-06-26 12:49:41 -04:00
| **TYPESCRIPT_ES_CONFIG_FILE** | `.eslintrc.yml` | Filename for [eslint configuration](https://eslint.org/docs/user-guide/configuring#configuration-file-formats) (ex: `.eslintrc.yml`, `.eslintrc.json`)|
2020-05-14 09:57:58 -04:00
| **VALIDATE_TYPESCRIPT_STANDARD** | `true` | Flag to enable or disable the linting process of the language. (Utilizing: standard) |
| **VALIDATE_DOCKER** | `true` | Flag to enable or disable the linting process of the language. |
| **VALIDATE_GO** | `true` | Flag to enable or disable the linting process of the language. |
2020-06-19 17:26:06 -04:00
| **VALIDATE_POWERSHELL** | `true` | Flag to enable or disable the linting process of the language. |
2020-07-02 17:31:16 -04:00
| **VALIDATE_ARM** | `true` | Flag to enable or disable the linting process of the language. |
2020-05-14 09:57:58 -04:00
| **VALIDATE_TERRAFORM** | `true` | Flag to enable or disable the linting process of the language. |
| **VALIDATE_CSS** | `true` | Flag to enable or disable the linting process of the language. |
| **VALIDATE_ENV** | `true` | Flag to enable or disable the linting process of the language. |
2020-06-19 14:30:28 -04:00
| **VALIDATE_CLOJURE** | `true` | Flag to enable or disable the linting process of the language. |
2020-07-04 18:14:27 -04:00
| **VALIDATE_HTML** | `true` | Flag to enable or disable the linting process of the language. |
2020-06-21 03:59:18 -04:00
| **VALIDATE_KOTLIN** | `true` | Flag to enable or disable the linting process of the language. |
2020-07-06 04:17:20 -04:00
| **VALIDATE_DART** | `true` | Flag to enable or disable the linting process of the language. |
2020-06-25 02:13:19 -04:00
| **VALIDATE_OPENAPI** | `true` | Flag to enable or disable the linting process of the language. |
| **VALIDATE_CLOUDFORMATION** | `true` | Flag to enable or disable the linting process of the language. |
2020-06-28 07:07:51 -04:00
| **VALIDATE_PROTOBUF** | `true` | Flag to enable or disable the linting process of the language. |
| **VALIDATE_EDITORCONFIG** | `true` | Flag to enable or disable the linting process with the editorconfig. |
| **ANSIBLE_DIRECTORY** | `/ansible` | Flag to set the root directory for Ansible file location(s). |
2020-05-14 09:57:58 -04:00
| **ACTIONS_RUNNER_DEBUG** | `false` | Flag to enable additional information about the linter, versions, and additional output. |
2020-06-19 13:40:53 -04:00
| **DISABLE_ERRORS** | `false` | Flag to have the linter complete with exit code 0 even if errors were detected. |
| **DEFAULT_WORKSPACE** | `/tmp/lint` | The location containing files to lint if you are running locally. |
2020-07-14 03:51:53 -04:00
| **OUTPUT_FORMAT** | `none` | The report format to be generated, besides the stdout one. Output format of tap is currently using v13 of the specification. Supported formats: tap |
| **OUTPUT_FOLDER** | `super-linter.report` | The location where the output reporting will be generated to. Output folder must not previously exist. |
| **OUTPUT_DETAILS** | `simpler` | What level of details to be reported. Supported formats: simpler or detailed. |
2020-07-20 15:07:56 -04:00
| **MULTI_STATUS** | `true` | A status API is made for each language that is linted to make visual parsing easier. |
2020-02-05 10:23:47 -05:00
### Template rules files
You can use the **GitHub** **Super-Linter** *with* or *without* your own personal rules sets. This allows for greater flexibility for each individual code base. The Template rules all try to follow the standards we believe should be enabled at the basic level.
- Copy **any** or **all** template rules files from `TEMPLATES/` into your repository in the location: `.github/linters/` of your repository
- If your repository does not have rules files, they will fall back to defaults in [this repository's `TEMPLATE` folder](https://github.com/github/super-linter/tree/master/TEMPLATES)
2019-10-23 14:15:12 -04:00
2020-04-23 12:39:13 -04:00
## Disabling rules
If you need to disable certain *rules* and *functionality*, you can view [Disable Rules](https://github.com/github/super-linter/blob/master/docs/disabling-linters.md)
2020-01-09 10:48:46 -05:00
## Docker Hub
The **Docker** container that is built from this repository is located at `https://hub.docker.com/r/github/super-linter`
2019-10-23 14:15:12 -04:00
2020-07-14 20:14:01 -04:00
## Run Super-Linter outside GitHub Actions
### Local (troubleshooting/debugging/enhancements)
2020-04-27 13:21:38 -04:00
If you find that you need to run super-linter locally, you can follow the documentation at [Running super-linter locally](https://github.com/github/super-linter/blob/master/docs/run-linter-locally.md)
2019-10-21 10:12:50 -04:00
2020-06-24 15:45:26 -04:00
Check out the [note](#how-it-works) in **How it Works** to understand more about the **Super-Linter** linting locally versus via continuous integration.
2020-07-14 20:14:01 -04:00
### Azure
Check out this [article](http://blog.tyang.org/2020/06/27/use-github-super-linter-in-azure-pipelines/)
### GitLab
Check out this [snippet](https://gitlab.com/snippets/1988376)
### Visual Studio Code
You can checkout this repository using [Container Remote Development](https://code.visualstudio.com/docs/remote/containers), and debug the linter using the `Test Linter` task.
![Example](https://user-images.githubusercontent.com/15258962/85165778-2d2ce700-b21b-11ea-803e-3f6709d8e609.gif)
We will also support [Github Codespaces](https://github.com/features/codespaces/) once it becomes available
2020-02-05 10:23:47 -05:00
2020-04-30 10:06:20 -04:00
## Limitations
Below are a list of the known limitations for the **GitHub Super-Linter**:
2020-05-07 16:16:57 -04:00
- Due to being completely packaged at run time, you will not be able to update dependencies or change versions of the enclosed linters and binaries
2020-06-30 10:40:23 -04:00
- Additional details from `package.json` are not read by the **GitHub Super-Linter**
2020-04-30 10:06:20 -04:00
- Downloading additional codebases as dependencies from private repositories will fail due to lack of permissions
2020-01-09 10:48:46 -05:00
## How to contribute
2020-01-09 18:01:23 -05:00
If you would like to help contribute to this **GitHub** Action, please see [CONTRIBUTING](https://github.com/github/super-linter/blob/master/.github/CONTRIBUTING.md)
2019-10-21 10:12:50 -04:00
--------------------------------------------------------------------------------
### License
2020-04-28 14:55:15 -04:00
- [MIT License](https://github.com/github/super-linter/blob/master/LICENSE)