├── .drone.yml ├── .eslintrc ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── babel.config.json ├── package.json ├── src ├── cli.js ├── formatter.js └── linter.js └── yarn.lock /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgAdmin/eslint-parallel/HEAD/.drone.yml -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgAdmin/eslint-parallel/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgAdmin/eslint-parallel/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgAdmin/eslint-parallel/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgAdmin/eslint-parallel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgAdmin/eslint-parallel/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgAdmin/eslint-parallel/HEAD/babel.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgAdmin/eslint-parallel/HEAD/package.json -------------------------------------------------------------------------------- /src/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgAdmin/eslint-parallel/HEAD/src/cli.js -------------------------------------------------------------------------------- /src/formatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgAdmin/eslint-parallel/HEAD/src/formatter.js -------------------------------------------------------------------------------- /src/linter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgAdmin/eslint-parallel/HEAD/src/linter.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgAdmin/eslint-parallel/HEAD/yarn.lock --------------------------------------------------------------------------------