Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/automattic/eslint-eslines
Utility that makes easier to combine ESLint with ESLines.
https://github.com/automattic/eslint-eslines
eslines eslint linting
Last synced: 15 days ago
JSON representation
Utility that makes easier to combine ESLint with ESLines.
- Host: GitHub
- URL: https://github.com/automattic/eslint-eslines
- Owner: Automattic
- Created: 2017-04-04T15:02:16.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-08T16:28:11.000Z (about 7 years ago)
- Last Synced: 2024-10-08T11:17:42.126Z (about 1 month ago)
- Topics: eslines, eslint, linting
- Language: JavaScript
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# eslint-eslines
Utility that makes easier to combine ESLint with ESLines in certain environments.
## Rationale
ESLint and ESLines play well together:
eslint -f json | eslines
Yet, UNIX pipes may not play well with environments that allow parallelization. For example, in CircleCI you are allowed to execute the same command over a different set of files in parallel:
lint-command :
parallel: true
files:
- client/**/*.js
- client/**/*.jsx
- server/**/*.js
- server/**/*.jsxIn those cases, UNIX piping does not help, hence this utility.