├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── lib ├── entrypoint.sh ├── request.js └── run.js └── screenshots └── annotation.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimenete/eslint-action/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimenete/eslint-action/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimenete/eslint-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimenete/eslint-action/HEAD/README.md -------------------------------------------------------------------------------- /lib/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimenete/eslint-action/HEAD/lib/entrypoint.sh -------------------------------------------------------------------------------- /lib/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimenete/eslint-action/HEAD/lib/request.js -------------------------------------------------------------------------------- /lib/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimenete/eslint-action/HEAD/lib/run.js -------------------------------------------------------------------------------- /screenshots/annotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimenete/eslint-action/HEAD/screenshots/annotation.png --------------------------------------------------------------------------------