{"id":13827821,"url":"https://github.com/prettier/prettier-eslint-cli","last_synced_at":"2025-04-29T18:48:01.024Z","repository":{"id":15853987,"uuid":"78890731","full_name":"prettier/prettier-eslint-cli","owner":"prettier","description":"CLI for prettier-eslint","archived":false,"fork":false,"pushed_at":"2025-03-25T07:17:22.000Z","size":423,"stargazers_count":541,"open_issues_count":6,"forks_count":85,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-04-23T16:35:14.296Z","etag":null,"topics":["cli","eslint","formatter","hacktoberfest","javascript","prettier"],"latest_commit_sha":null,"homepage":"https://npm.im/prettier-eslint-cli","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/prettier.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"prettier","open_collective":"prettier","thanks_dev":"u/gh/prettier","tidelift":"npm/prettier"}},"created_at":"2017-01-13T22:10:52.000Z","updated_at":"2025-03-25T07:10:15.000Z","dependencies_parsed_at":"2022-08-02T01:10:01.664Z","dependency_job_id":"93044df0-666a-4074-8e88-c002482d0dc6","html_url":"https://github.com/prettier/prettier-eslint-cli","commit_stats":{"total_commits":135,"total_committers":41,"mean_commits":3.292682926829268,"dds":0.762962962962963,"last_synced_commit":"83691c574b54896c893f66b7c1a3ff456f41945f"},"previous_names":[],"tags_count":60,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prettier%2Fprettier-eslint-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prettier%2Fprettier-eslint-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prettier%2Fprettier-eslint-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prettier%2Fprettier-eslint-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/prettier","download_url":"https://codeload.github.com/prettier/prettier-eslint-cli/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251563573,"owners_count":21609753,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","eslint","formatter","hacktoberfest","javascript","prettier"],"created_at":"2024-08-04T09:02:12.962Z","updated_at":"2025-04-29T18:48:01.007Z","avatar_url":"https://github.com/prettier.png","language":"JavaScript","funding_links":["https://github.com/sponsors/prettier","https://opencollective.com/prettier","https://thanks.dev/u/gh/prettier","https://tidelift.com/funding/github/npm/prettier","https://www.paypal.me/zimme"],"categories":["JavaScript"],"sub_categories":[],"readme":"# prettier-eslint-cli\n\nCLI for [`prettier-eslint`][prettier-eslint]\n\n[![Build Status][build-badge]][build]\n[![Code Coverage][coverage-badge]][coverage]\n[![version][version-badge]][package]\n[![downloads][downloads-badge]][npm-stat]\n[![MIT License][license-badge]][license]\n[![changesets](https://img.shields.io/badge/maintained%20with-changesets-176de3.svg?style=flat-square)](https://github.com/atlassian/changesets)\n\n[![Open Collective backers and sponsors](https://img.shields.io/opencollective/all/prettier?style=flat-square)](https://opencollective.com/prettier)\n[![All Contributors](https://img.shields.io/badge/all_contributors-21-orange.svg?style=flat-square)](#contributors)\n[![PRs Welcome][prs-badge]][prs]\n[![Donate][donate-badge]][donate]\n[![Code of Conduct][coc-badge]][coc]\n[![Roadmap][roadmap-badge]][roadmap]\n[![Examples][examples-badge]][examples]\n\n[![Watch on GitHub][github-watch-badge]][github-watch]\n[![Star on GitHub][github-star-badge]][github-star]\n[![Tweet][twitter-badge]][twitter]\n\n## The problem\n\nYou have a bunch of files that you want to format using [`prettier-eslint`][prettier-eslint].\nBut `prettier-eslint` can only operate on strings.\n\n## This solution\n\nThis is a [CLI](https://en.wikipedia.org/wiki/Command-line_interface) that allows you to use\n`prettier-eslint` on one or multiple files. `prettier-eslint-cli` forwards on the `filePath`\nand other relevant options to `prettier-eslint` which identifies the applicable `ESLint`\nconfig for each file and uses that to determine the options for `prettier` and `eslint --fix`.\n\n## Installation\n\nThis module is distributed via [npm][npm] which is bundled with [node][node] and should\nbe installed (with [`yarn`][yarn]) as one of your project's `devDependencies`:\n\n```\nyarn add --dev prettier-eslint-cli\n```\n\n\u003e If you're still using the [`npm`][npm] client: `npm install --save-dev prettier-eslint-cli`\n\n## Usage\n\nTypically you'll use this in your [npm scripts][npm scripts] (or [package scripts][package scripts]):\n\n```json\n{\n  \"scripts\": {\n    \"format\": \"prettier-eslint \\\"src/**/*.js\\\"\"\n  }\n}\n```\n\nThis will format all `.js` files in the `src` directory. The argument you pass to the CLI\nis a [glob][glob] and you can pass as many as you wish. You can also pass options.\n\n### Vim\n\nVim users can add the following to their .vimrc:\n\n```\nautocmd FileType javascript set formatprg=prettier-eslint\\ --stdin\n```\n\nThis makes prettier-eslint-cli power the gq command for automatic formatting without any plugins. You can also add the following to your .vimrc to run prettier-eslint-cli when .js files are saved:\n\n```\nautocmd BufWritePre *.js :normal gggqG\n```\n\n### CLI Options\n\n```\nprettier-eslint --help\nUsage: prettier-eslint \u003cglobs\u003e... [--option-1 option-1-value --option-2]\n\nPrefix an option with \"no-\" to set it to false, such as --no-semi to\ndisable semicolons and --no-eslint-ignore to disable default ignores.\n\nOptions:\n  -h, --help               Show help                                   [boolean]\n  --version                Show version number                         [boolean]\n  --write                  Edit the file in-place (beware!)\n                                                      [boolean] [default: false]\n  --stdin                  Read input via stdin       [boolean] [default: false]\n  --stdin-filepath         Path to the file to pretend that stdin comes from.\n  --eslint-ignore          Only format matching files even if they are not\n                           ignored by .eslintignore. (can use --no-eslint-ignore\n                           to disable this)            [boolean] [default: true]\n  --prettier-ignore        Only format matching files even if they are not\n                           ignored by .prettierignore. (can use\n                           --no-prettier-ignore to disable this)\n                                                       [boolean] [default: true]\n  --list-different         Print filenames of files that are different from\n                           Prettier + Eslint formatting.\n                                                      [boolean] [default: false]\n  --include-dot-files      Include files that start with a dot in the search.\n                                                      [boolean] [default: false]\n  --eslint-path            The path to the eslint module to use\n                 [default: \"./node_modules/eslint\"]\n  --eslint-config-path     Path to the eslint config to use for eslint --fix\n  --prettier-path          The path to the prettier module to use [default: \"./node_modules/prettier\"]\n  --config                 Path to the prettier config\n  --ignore                 pattern(s) you wish to ignore (can be used multiple\n                           times and includes **/node_modules/** automatically)\n  --log-level, -l          The log level to use\n        [choices: \"silent\", \"error\", \"warn\", \"info\", \"debug\", \"trace\"] [default:\n                                                                         \"warn\"]\n  --prettier-last          Run prettier last          [boolean] [default: false]\n  --use-tabs               Indent lines with tabs instead of spaces.   [boolean]\n  --print-width            Specify the length of line that the printer will wrap\n                           on.                                          [number]\n  --tab-width              Specify the number of spaces per indentation-level.\n                                                                        [number]\n  --trailing-comma         Print trailing commas wherever possible.\n\n                           Valid options:\n                           - \"none\" - no trailing commas\n                           - \"es5\" - trailing commas where valid in ES5\n                           (objects, arrays, etc)\n                           - \"all\" - trailing commas wherever possible (function\n                           arguments)   [string] [choices: \"none\", \"es5\", \"all\"]\n  --bracket-spacing        Print spaces between brackets in object literals.\n                           Can use --no-bracket-spacing for \"false\" to disable\n                           it.\n\n                           Valid options:\n                           - true - Example: { foo: bar }\n                           - false - Example: {foo: bar}               [boolean]\n  --jsx-bracket-same-line  Put the \u003e of a multi-line JSX element at the end of\n                           the last line instead of being alone on the next line\n                                                                       [boolean]\n  --parser                 Specify which parser to use.                 [string]\n  --semi                   Print semicolons at the ends of statements.\n                           Can use --no-semi.\n\n                           Valid options:\n                           - true - add a semicolon at the end of every\n                           statement\n                           - false - only add semicolons at the beginning of\n                           lines that may introduce ASI failures       [boolean]\n  --single-quote           Use single quotes instead of double quotes. [boolean]\n```\n\n#### \u003cglobs\u003e\n\nAny number of [globs][glob] you wish to use to match the files you wish to format. By default, `glob` will ignore\n`**/node_modules/**` unless the glob you provide\nincludes the string `node_modules`.\n\n#### --write\n\nBy default `prettier-eslint` will simply log the formatted version to the terminal. If you want to overwrite the file\nitself (a common use-case) then add `--write`. You should quote your globs, otherwise your terminal will expand the glob before it gets to `prettier-eslint` (which can have unexpected results):\n\n```json\n{\n  \"scripts\": {\n    \"format\": \"prettier-eslint --write \\\"src/**/*.js\\\"\"\n  }\n}\n```\n\n\u003e **NOTE:** It is recommended that you keep your files under source control and committed\n\u003e before running `prettier-eslint --write` as it will overwrite your files!\n\n#### --list-different\n\nInstead of printing the formatted version of the files to the terminal, `prettier-eslint` will log the name of the files that are different from the expected formatting. This can be usefull when using `prettier-eslint` in a version control system hook to inform the committer which files need to be formatted.\n\n#### --stdin\n\nAccept input via `stdin`. For example:\n\n```\necho \"var   foo =    'bar'\" | prettier-eslint --stdin\n# results in: \"var foo = 'bar';\" (depending on your eslint config)\n```\n\n#### --eslint-path\n\nForwarded as the `eslintPath` option to `prettier-eslint`\n\n#### --eslint-config-path\n\nResolve eslint config file, parse and forward config object as the `eslintConfig` option to\n`prettier-eslint`\n\n#### --prettier-path\n\nForwarded as the `prettierPath` option to `prettier-eslint`\n\n#### --log-level\n\nForwarded as `logLevel` option to `prettier-eslint`\n\n#### --no-eslint-ignore\n\nDisables application of `.eslintignore` to the files resolved from the glob. By\ndefault, `prettier-eslint-cli` will exclude files if they are matched by a\n`.eslintignore`. Add this flag to disable this behavior.\n\n\u003e Note: You can also set the `LOG_LEVEL` environment variable to control logging in `prettier-eslint`\n\n#### --prettier-last\n\nBy default, `prettier-eslint-cli` will run `prettier` first, then `eslint --fix`. This is great if\nyou want to use `prettier`, but override some of the styles you don't like using `eslint --fix`.\n\nAn alternative approach is to use different tools for different concerns. If you provide the\nargument `--prettier-last`, it will run `eslint --fix` first, then `prettier`. This allows you to\nuse `eslint` to look for bugs and/or bad practices, and use `prettier` to enforce code style.\n\n#### `prettier` options\n\n`prettier-eslint-cli` also supports the same command line options as `prettier`.\n\nFor example: `prettier-eslint --trailing-comma es5`\n\nRefer to the [prettier-eslint](https://github.com/prettier/prettier#options) docs for documentation on these options\n\n## Integration\n\nAny linter that support ESLint [CLIEngine](http://eslint.org/docs/developer-guide/nodejs-api#cliengine) interface can be integrate with `prettier-eslint`\n\n### Knowed integrated package helpers\n\n- [standard-prettier-eslint][standard-prettier-eslint], a helper package for integrate [standard][standard]\n- [semistandard-prettier-eslint][semistandard-prettier-eslint], a helper package for integrate [semistandard][semistandard]\n\n### Standalone CLI tools based on `prettier-eslint-cli`\n\n- [prettier-std-cli][prettier-std-cli] the easy to use CLI version of [standard-prettier-eslint][standard-prettier-eslint]\n- [prettier-semi-cli][prettier-semi-cli] the easy to use CLI version of [semistandard-prettier-eslint][semistandard-prettier-eslint]\n\n## Related\n\n- [prettier-eslint](https://github.com/prettier/prettier-eslint) - the core package\n- [prettier-eslint-atom](https://github.com/kentcdodds/prettier-eslint-atom) - an atom plugin\n\n## Contributors\n\nThanks goes to these people ([emoji key][emojis]):\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --\u003e\n\u003c!-- prettier-ignore-start --\u003e\n\u003c!-- markdownlint-disable --\u003e\n\u003ctable\u003e\n  \u003ctbody\u003e\n    \u003ctr\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://kentcdodds.com\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/1500684?v=3?s=100\" width=\"100px;\" alt=\"Kent C. Dodds\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eKent C. Dodds\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=kentcdodds\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=kentcdodds\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"#infra-kentcdodds\" title=\"Infrastructure (Hosting, Build-Tools, etc)\"\u003e🚇\u003c/a\u003e \u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=kentcdodds\" title=\"Tests\"\u003e⚠️\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/aharris88\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/3266363?v=3?s=100\" width=\"100px;\" alt=\"Adam Harris\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eAdam Harris\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=aharris88\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=aharris88\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"https://github.com/prettier/prettier-eslint-cli/pulls?q=is%3Apr+reviewed-by%3Aaharris88\" title=\"Reviewed Pull Requests\"\u003e👀\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://ericmccormick.io\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/622118?v=3?s=100\" width=\"100px;\" alt=\"Eric McCormick\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eEric McCormick\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/prettier/prettier-eslint-cli/pulls?q=is%3Apr+reviewed-by%3Aedm00se\" title=\"Reviewed Pull Requests\"\u003e👀\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/joelseq\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/12389411?v=3?s=100\" width=\"100px;\" alt=\"Joel Sequeira\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJoel Sequeira\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=joelseq\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://frank.taillandier.me\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/103008?v=3?s=100\" width=\"100px;\" alt=\"Frank Taillandier\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eFrank Taillandier\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://sheerun.net\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/292365?v=3?s=100\" width=\"100px;\" alt=\"Adam Stankiewicz\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eAdam Stankiewicz\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=sheerun\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://www.stephenjohnsorensen.com/\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/487068?v=3?s=100\" width=\"100px;\" alt=\"Stephen John Sorensen\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eStephen John Sorensen\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=spudly\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/Gandem\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/11560964?v=3?s=100\" width=\"100px;\" alt=\"Gandem\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eGandem\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=Gandem\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=Gandem\" title=\"Tests\"\u003e⚠️\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/cef62\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/129991?v=3?s=100\" width=\"100px;\" alt=\"Matteo Ronchi\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eMatteo Ronchi\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/prettier/prettier-eslint-cli/issues?q=author%3Acef62\" title=\"Bug reports\"\u003e🐛\u003c/a\u003e \u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=cef62\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/BenoitZugmeyer\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/61787?v=3?s=100\" width=\"100px;\" alt=\"Benoît Zugmeyer\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eBenoît Zugmeyer\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=BenoitZugmeyer\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=BenoitZugmeyer\" title=\"Tests\"\u003e⚠️\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://i.am.charlike.online\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/5038030?v=3?s=100\" width=\"100px;\" alt=\"Charlike Mike Reagent\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eCharlike Mike Reagent\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=tunnckoCore\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=tunnckoCore\" title=\"Tests\"\u003e⚠️\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/diondirza\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/10954870?v=3?s=100\" width=\"100px;\" alt=\"Dion Dirza\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eDion Dirza\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/prettier/prettier-eslint-cli/issues?q=author%3Adiondirza\" title=\"Bug reports\"\u003e🐛\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/mrm007\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/3297808?v=3?s=100\" width=\"100px;\" alt=\"mrm007\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003emrm007\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/prettier/prettier-eslint-cli/issues?q=author%3Amrm007\" title=\"Bug reports\"\u003e🐛\u003c/a\u003e \u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=mrm007\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://www.jackfranklin.co.uk\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/193238?v=3?s=100\" width=\"100px;\" alt=\"Jack Franklin\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJack Franklin\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=jackfranklin\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://www.ryanzim.com\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/17342435?v=3?s=100\" width=\"100px;\" alt=\"Ryan Zimmerman\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eRyan Zimmerman\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=RyanZim\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://stackoverflow.com/users/63011\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/1186409?v=3?s=100\" width=\"100px;\" alt=\"Paolo Moretti\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003ePaolo Moretti\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/prettier/prettier-eslint-cli/issues?q=author%3Amoretti\" title=\"Bug reports\"\u003e🐛\u003c/a\u003e \u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=moretti\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=moretti\" title=\"Tests\"\u003e⚠️\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/bySabi\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/6242574?v=3?s=100\" width=\"100px;\" alt=\"bySabi Files\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003ebySabi Files\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=bySabi\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"#tool-bySabi\" title=\"Tools\"\u003e🔧\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://morhetz.com\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/554231?v=4?s=100\" width=\"100px;\" alt=\"Pavel Pertsev\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003ePavel Pertsev\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=morhetz\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=morhetz\" title=\"Tests\"\u003e⚠️\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://www.joshenglish.com\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/13577271?v=4?s=100\" width=\"100px;\" alt=\"Josh English\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJosh English\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=jmenglis\" title=\"Tests\"\u003e⚠️\u003c/a\u003e \u003ca href=\"https://github.com/prettier/prettier-eslint-cli/issues?q=author%3Ajmenglis\" title=\"Bug reports\"\u003e🐛\u003c/a\u003e \u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=jmenglis\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"#plugin-jmenglis\" title=\"Plugin/utility libraries\"\u003e🔌\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://disquisition.net\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/1706502?v=4?s=100\" width=\"100px;\" alt=\"Spenser Isdahl\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eSpenser Isdahl\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=disquisition\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=disquisition\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=disquisition\" title=\"Tests\"\u003e⚠️\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/bj00rn\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/10961167?v=4?s=100\" width=\"100px;\" alt=\"Björn Dalfors\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eBjörn Dalfors\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#infra-bj00rn\" title=\"Infrastructure (Hosting, Build-Tools, etc)\"\u003e🚇\u003c/a\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/sscaff1\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/1554424?v=4?s=100\" width=\"100px;\" alt=\"Steven Scaffidi\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eSteven Scaffidi\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=sscaff1\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://danielwilhelmsen.com\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/1758049?v=4?s=100\" width=\"100px;\" alt=\"Daniel Wilhelmsen\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eDaniel Wilhelmsen\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=dpwilhelmsen\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"#maintenance-dpwilhelmsen\" title=\"Maintenance\"\u003e🚧\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/gwhitney\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/3825429?v=4?s=100\" width=\"100px;\" alt=\"Glen Whitney\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eGlen Whitney\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#maintenance-gwhitney\" title=\"Maintenance\"\u003e🚧\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://campcode.dev/\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/10620169?v=4?s=100\" width=\"100px;\" alt=\"Rebecca Vest\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eRebecca Vest\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=idahogurl\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://www.1stg.me/\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/8336744?v=4?s=100\" width=\"100px;\" alt=\"JounQin\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJounQin\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#question-JounQin\" title=\"Answering Questions\"\u003e💬\u003c/a\u003e \u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=JounQin\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"#design-JounQin\" title=\"Design\"\u003e🎨\u003c/a\u003e \u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=JounQin\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"#ideas-JounQin\" title=\"Ideas, Planning, \u0026 Feedback\"\u003e🤔\u003c/a\u003e \u003ca href=\"#infra-JounQin\" title=\"Infrastructure (Hosting, Build-Tools, etc)\"\u003e🚇\u003c/a\u003e \u003ca href=\"#maintenance-JounQin\" title=\"Maintenance\"\u003e🚧\u003c/a\u003e \u003ca href=\"#plugin-JounQin\" title=\"Plugin/utility libraries\"\u003e🔌\u003c/a\u003e \u003ca href=\"#projectManagement-JounQin\" title=\"Project Management\"\u003e📆\u003c/a\u003e \u003ca href=\"https://github.com/prettier/prettier-eslint-cli/pulls?q=is%3Apr+reviewed-by%3AJounQin\" title=\"Reviewed Pull Requests\"\u003e👀\u003c/a\u003e \u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=JounQin\" title=\"Tests\"\u003e⚠️\u003c/a\u003e \u003ca href=\"#tool-JounQin\" title=\"Tools\"\u003e🔧\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/dorser\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/20969462?v=4?s=100\" width=\"100px;\" alt=\"dorser\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003edorser\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=dorser\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"#maintenance-dorser\" title=\"Maintenance\"\u003e🚧\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://qwq.cat\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/20062482?v=4?s=100\" width=\"100px;\" alt=\"さくら\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eさくら\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/prettier/prettier-eslint-cli/commits?author=u3u\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n  \u003c/tbody\u003e\n\u003c/table\u003e\n\n\u003c!-- markdownlint-restore --\u003e\n\u003c!-- prettier-ignore-end --\u003e\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:END --\u003e\n\nThis project follows the [all-contributors][all-contributors] specification. Contributions of any kind welcome!\n\n## LICENSE\n\nMIT\n\n[yarn]: https://yarnpkg.com/\n[npm]: https://www.npmjs.com/\n[node]: https://nodejs.org\n[build-badge]: https://img.shields.io/github/actions/workflow/status/prettier/prettier-eslint-cli/ci.yml?style=flat-square\n[build]: https://github.com/prettier/prettier-eslint-cli/actions/workflows/ci.yml\n[coverage-badge]: https://img.shields.io/codecov/c/github/prettier/prettier-eslint-cli.svg?style=flat-square\n[coverage]: https://codecov.io/github/prettier/prettier-eslint-cli\n[version-badge]: https://img.shields.io/npm/v/prettier-eslint-cli.svg?style=flat-square\n[package]: https://www.npmjs.com/package/prettier-eslint-cli\n[downloads-badge]: https://img.shields.io/npm/dm/prettier-eslint-cli.svg?style=flat-square\n[npm-stat]: http://npm-stat.com/charts.html?package=prettier-eslint-cli\u0026from=2016-04-01\n[license-badge]: https://img.shields.io/npm/l/prettier-eslint-cli.svg?style=flat-square\n[license]: https://github.com/prettier/prettier-eslint-cli/blob/master/other/LICENSE\n[prs-badge]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square\n[prs]: http://makeapullrequest.com\n[donate-badge]: https://img.shields.io/badge/$-support-green.svg?style=flat-square\n[donate]: https://www.paypal.me/zimme\n[coc-badge]: https://img.shields.io/badge/code%20of-conduct-ff69b4.svg?style=flat-square\n[coc]: https://github.com/prettier/prettier-eslint-cli/blob/master/other/CODE_OF_CONDUCT.md\n[roadmap-badge]: https://img.shields.io/badge/%F0%9F%93%94-roadmap-CD9523.svg?style=flat-square\n[roadmap]: https://github.com/prettier/prettier-eslint-cli/blob/master/other/ROADMAP.md\n[examples-badge]: https://img.shields.io/badge/%F0%9F%92%A1-examples-8C8E93.svg?style=flat-square\n[examples]: https://github.com/prettier/prettier-eslint-cli/blob/master/other/EXAMPLES.md\n[github-watch-badge]: https://img.shields.io/github/watchers/prettier/prettier-eslint-cli.svg?style=social\n[github-watch]: https://github.com/prettier/prettier-eslint-cli/watchers\n[github-star-badge]: https://img.shields.io/github/stars/prettier/prettier-eslint-cli.svg?style=social\n[github-star]: https://github.com/prettier/prettier-eslint-cli/stargazers\n[twitter]: https://twitter.com/intent/tweet?text=Check%20out%20prettier-eslint-cli!%20https://github.com/prettier/prettier-eslint-cli%20%F0%9F%91%8D\n[twitter-badge]: https://img.shields.io/twitter/url/https/github.com/prettier/prettier-eslint-cli.svg?style=social\n[emojis]: https://github.com/kentcdodds/all-contributors#emoji-key\n[all-contributors]: https://github.com/kentcdodds/all-contributors\n[prettier-eslint]: https://github.com/prettier/prettier-eslint\n[npm scripts]: https://docs.npmjs.com/misc/scripts\n[package scripts]: https://github.com/kentcdodds/p-s\n[glob]: https://github.com/isaacs/node-glob\n[standard-prettier-eslint]: https://github.com/bySabi/standard-prettier-eslint\n[semistandard-prettier-eslint]: https://github.com/bySabi/semistandard-prettier-eslint\n[standard]: https://github.com/standard/standard\n[semistandard]: https://github.com/Flet/semistandard\n[prettier-std-cli]: https://github.com/bySabi/prettier-std-cli\n[prettier-semi-cli]: https://github.com/bySabi/prettier-semi-cli\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprettier%2Fprettier-eslint-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprettier%2Fprettier-eslint-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprettier%2Fprettier-eslint-cli/lists"}