Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/snow-actions/eclint
- Owner: snow-actions
- License: mit
- Created: 2019-11-10T03:29:29.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T13:01:47.000Z (almost 2 years ago)
- Last Synced: 2024-11-22T03:16:48.326Z (about 1 month ago)
- Topics: actions, eclint, editorconfig, github-actions
- Language: JavaScript
- Homepage:
- Size: 2.73 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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'
```