github.com/Azure/tflint-ruleset-basic-ext@v0.6.0/README.md (about)

     1  # TFLint Ruleset for terraform-provider-basic-ext
     2  
     3  ![test](https://img.shields.io/github/workflow/status/Azure/tflint-ruleset-basic-ext/build?label=build)
     4  ![lint](https://img.shields.io/github/workflow/status/Azure/tflint-ruleset-basic-ext/lint?label=lint)
     5  ![e2e](https://img.shields.io/github/workflow/status/Azure/tflint-ruleset-basic-ext/e2e?label=e2e)
     6  
     7  
     8  TFLint ruleset extension plugin for common terraform code syntax check
     9  
    10  ## Requirements
    11  
    12  - TFLint v0.35+
    13  - Go v1.18
    14  
    15  ## Building the plugin
    16  
    17  Clone the repository locally and run the following command:
    18  
    19  ```
    20  $ make
    21  ```
    22  
    23  You can easily install the built plugin with the following:
    24  
    25  ```
    26  $ make install
    27  ```
    28  
    29  Note that if you install the plugin with make install, you must omit the `version` and `source` attributes in `.tflint.hcl`:
    30  
    31  ```hcl
    32  plugin "basic-ext" {
    33      enabled = true
    34  }
    35  ```
    36  
    37  Follow the instructions to edit the generated files and open a new pull request.