Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/krizzu/eslint-check-action

GitHub action running eslint check in your project, annotating errors/warnings in PR.
https://github.com/krizzu/eslint-check-action

automation ci continuous-integration eslint github-actions

Last synced: 9 days ago
JSON representation

GitHub action running eslint check in your project, annotating errors/warnings in PR.

Awesome Lists containing this project

README

        

# Eslint check action

GitHub action running eslint check in your project, annotating errors/warnings in PR.

## Features

- Customizable
- Installs project dependencies if missing
- Annotates lines in PR with warnings and errors

## Usage

Add workflow to your project (ex. `.github/workflows/eslint.yml`):

```yaml
name: Lint
on: [push]
jobs:
eslint_check:
name: Prepare action
runs-on: ubuntu-latest
steps:
# Checkout action must run prior to eslint check
- name: Checkout
uses: actions/checkout@v1
- name: Lint
uses: Krizzu/[email protected]
with:
ghToken: ${{ secrets.GITHUB_TOKEN }}
eslintFiles: "lib, scripts"
eslintConfig: "myConfigs/eslint.config.js",
eslintExt: "ts, tsx"
```

### params

**eslintFiles**

Relative path to files/directories to run lint on.
Default: `.`

**eslintConfig**

Relative path to eslint config. Can either be `.js` config, `.eslintrc` or `package.json`.
Default: `.eslintrc`

**eslintExt**

File extension to run linting on.
Default: `js, ts, jsx, tsx`

## License

MIT.