Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/snow-actions/eclint

Check or fix file format based on EditorConfig by using ECLint.
https://github.com/snow-actions/eclint

actions eclint editorconfig github-actions

Last synced: about 1 month ago
JSON representation

Check or fix file format based on EditorConfig by using ECLint.

Awesome Lists containing this project

README

        


GitHub Actions status

# ECLint action

Execute [ECLint](https://github.com/jedmao/eclint) on GitHub Actions.
ECLint validates or fixes code based on [EditorConfig](https://editorconfig.org/).

## Usage

See [action.yml](action.yml)

### Validate

Execute `eclint check`.

```yml
- uses: snow-actions/[email protected]
with:
args: 'check'
```

### Fix

Execute `eclint fix *.yml`. Make commit yourself.

```yml
- uses: snow-actions/[email protected]
with:
args: 'fix *.yml'
```