{"id":13398076,"url":"https://github.com/prettier/prettier-atom","last_synced_at":"2025-10-05T12:31:51.003Z","repository":{"id":15612072,"uuid":"78498562","full_name":"prettier/prettier-atom","owner":"prettier","description":"An atom package for the prettier formatter.","archived":true,"fork":false,"pushed_at":"2023-01-26T21:09:04.000Z","size":5576,"stargazers_count":754,"open_issues_count":39,"forks_count":96,"subscribers_count":13,"default_branch":"master","last_synced_at":"2024-10-29T22:37:34.876Z","etag":null,"topics":["atom","atom-editor","atom-package","eslint","formatter","prettier","prettier-eslint","prettier-js"],"latest_commit_sha":null,"homepage":null,"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":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-01-10T04:47:01.000Z","updated_at":"2024-10-29T19:35:59.000Z","dependencies_parsed_at":"2023-02-15T00:16:46.120Z","dependency_job_id":null,"html_url":"https://github.com/prettier/prettier-atom","commit_stats":null,"previous_names":[],"tags_count":84,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prettier%2Fprettier-atom","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prettier%2Fprettier-atom/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prettier%2Fprettier-atom/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prettier%2Fprettier-atom/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/prettier","download_url":"https://codeload.github.com/prettier/prettier-atom/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235388661,"owners_count":18981944,"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":["atom","atom-editor","atom-package","eslint","formatter","prettier","prettier-eslint","prettier-js"],"created_at":"2024-07-30T18:02:05.693Z","updated_at":"2025-10-05T12:31:45.669Z","avatar_url":"https://github.com/prettier.png","language":"JavaScript","readme":"# Prettier for Atom [![Watch on GitHub][github-watch-badge]][github-watch][![Star on GitHub][github-star-badge]][github-star][![Tweet][twitter-badge]][twitter]\n\n\u003c!-- [![Dependencies][dependencyci-badge]][dependencyci] TODO: Add dependency CI! --\u003e\n\n\u003c!-- [![Code of Conduct][coc-badge]][coc] --\u003e\n\n[![Version][version-badge]][package]\n[![Downloads][downloads-badge]][package]\n[![Build Status][build-badge]][build]\n[![Code Coverage][coverage-badge]][coverage]\n[![MIT License][license-badge]][license]\n[![All Contributors][all-contributors-badge]](#contributors)\n[![PRs Welcome][prs-badge]][prs]\n\nAtom package to format your code using [Prettier](https://github.com/prettier/prettier).\n\n![prettier demo](prettier-demo.gif)\n\n## Problems with Latest Release (v0.55.0)?\n\nWe have recently switched to deferring most options to Prettier via a .prettierrc (or similar) file instead of specifying your options via the Atom package. This is to accommodate Prettier \"plugins\" which introduce all sorts of new functionality but can't work with the old paradigm.\n\nHowever, this requires Prettier **v1.13.4** or greater. If you are not ready to migrate, you can revert prettier-atom like this:\n\n```shell\napm install prettier-atom@0.54.0\n```\n\n## Installation\n\n```\napm install prettier-atom\n```\n\nOr go to _Settings → Install_ and search for `prettier-atom`.\n\nMake sure to restart Atom after the package is installed.\n\n## How to use\n\nThere are two ways to format your code:\n\n- Automatically **format on save** (requires enabling in _Packages → Prettier → Toggle Format on Save_)\n- Run the command `Prettier: Format` to invoke Prettier manually\n  - Windows/Linux: \u003ckbd\u003ectrl\u003c/kbd\u003e + \u003ckbd\u003ealt\u003c/kbd\u003e + \u003ckbd\u003ef\u003c/kbd\u003e\n  - Mac: \u003ckbd\u003econtrol\u003c/kbd\u003e + \u003ckbd\u003eoption\u003c/kbd\u003e + \u003ckbd\u003ef\u003c/kbd\u003e\n\nPrettier will search up the file tree looking for a [prettier config](https://prettier.io/docs/en/configuration.html) to use. If none is found, Prettier will use its default settings.\n\nPrettier will also respect your `.prettierignore` file.\n\n## What version of Prettier gets used?\n\nBy default, we use the prettier instance in your project's `node_modules` directory. We highly recommend adding Prettier to your dependencies so that your team, CI tooling, and any scripts using Prettier all format code exactly the same way.\n\nIf Prettier can't be found in your project's node modules, then\nwe fall back to using the version that comes bundled with the prettier-atom package (version changes are documented in the [CHANGELOG](./CHANGELOG.md)).\n\n## Configuring default rules\n\nSome users may not wish to create a new [Prettier config](https://prettier.io/docs/en/configuration.html) for every project. Because Prettier searches recursively up the filepath, you can place a global prettier config at `~/.prettierrc` to be used as a fallback.\n\n## Using ESLint\n\n![prettier-eslint demo][prettier-eslint-demo]\n\nThere are three ways to use ESLint with Prettier and prettier-atom:\n\n### 1. Use ESLint to run Prettier\n\nYou can opt not to use prettier-atom and instead configure ESLint to run prettier. ([see details](https://prettier.io/docs/en/eslint.html#use-eslint-to-run-prettier))\n\n### 2. Turn off ESLint's Formatting Rules\n\nYou can disable ESLint rules for things that Prettier itself fixes. This allows both tools to run alongside each other without conflicting with one another. ([see details](https://prettier.io/docs/en/eslint.html#turn-off-eslint-s-formatting-rules))\n\n### 3. Use prettier-eslint\n\nThe [prettier-eslint][prettier-eslint] package (shipped with prettier-atom) will recursively search up the file tree for your ESLint settings and infer the corresponding Prettier settings to use when formatting. After formatting, prettier-eslint will invoke ESLint to fix remaining issues. Check the \"ESLint Integration\" checkbox to enable.\n\n\u003e Note: If you are using the [linter-eslint](https://github.com/AtomLinter/linter-eslint) package alongside prettier-atom, please **ensure you have unchecked its \"Fix on save\" checkbox**. Leaving it enabled will cause a race condition between prettier-atom and linter-eslint. After it has finished formatting your code, **prettier-atom will automatically invoke the linter package's `lint` command for you**.\n\n## Using Stylelint\n\nThe [prettier-stylelint](https://github.com/hugomrdias/prettier-stylelint) package (shipped with prettier-atom) derives prettier settings from your [stylelint configuration](https://stylelint.io/user-guide/configuration/) to use when formatting. After formatting, prettier-stylelint will invoke Stylelint to fix remaining issues. Check the \"Stylelint Integration\" checkbox to enable.\n\n\u003e Note: prettier-atom automatically detects when you are in an Atom scope that stylelint supports and switches to using it instead of normal Prettier when formatting that file.\n\n## Troubleshooting formatting problems\n\nIf Prettier is not formatting something properly, please open an issue on the [Prettier repository](https://github.com/prettier/prettier), not this repository.\n\n## Inspiration\n\nThis repository was created by [James Long][james-long] to go along with his Prettier project. [Kent C. Dodds][kentcdodds] extended Prettier to add `eslint --fix` integration as [prettier-eslint][prettier-eslint] and forked the original `prettier-atom` plugin to create the `prettier-eslint-atom` plugin. Because it became clear that the plugins were very similar and thus maintenance made easier by combining the two, [Rob Wise][robwise] merged `prettier-eslint-atom` back into `prettier-atom`.\n\n## Maintainers\n\n[Rob Wise][robwise]\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 --\u003e\n| [\u003cimg src=\"https://avatars.githubusercontent.com/u/17031?v=3\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJames Long\u003c/b\u003e\u003c/sub\u003e](http://jlongster.com)\u003cbr /\u003e[💬](#question-jlongster \"Answering Questions\") [💻](https://github.com/prettier/prettier-atom/commits?author=jlongster \"Code\") [📖](https://github.com/prettier/prettier-atom/commits?author=jlongster \"Documentation\") [🔌](#plugin-jlongster \"Plugin/utility libraries\") [👀](#review-jlongster \"Reviewed Pull Requests\") | [\u003cimg src=\"https://avatars.githubusercontent.com/u/6173488?v=3\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eRob Wise\u003c/b\u003e\u003c/sub\u003e](https://robwise.github.io)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=robwise \"Code\") [📖](https://github.com/prettier/prettier-atom/commits?author=robwise \"Documentation\") [💬](#question-robwise \"Answering Questions\") [💡](#example-robwise \"Examples\") [👀](#review-robwise \"Reviewed Pull Requests\") [⚠️](https://github.com/prettier/prettier-atom/commits?author=robwise \"Tests\") | [\u003cimg src=\"https://avatars.githubusercontent.com/u/1500684?v=3\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eKent C. Dodds\u003c/b\u003e\u003c/sub\u003e](https://kentcdodds.com)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=kentcdodds \"Code\") [📖](https://github.com/prettier/prettier-atom/commits?author=kentcdodds \"Documentation\") [🚇](#infra-kentcdodds \"Infrastructure (Hosting, Build-Tools, etc)\") | [\u003cimg src=\"https://avatars.githubusercontent.com/u/1144075?v=3\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eLuca Barone\u003c/b\u003e\u003c/sub\u003e](https://github.com/cloud-walker)\u003cbr /\u003e | [\u003cimg src=\"https://avatars.githubusercontent.com/u/4514159?v=3\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eArnar Þór Sveinsson\u003c/b\u003e\u003c/sub\u003e](https://github.com/arnarthor)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=arnarthor \"Code\") | [\u003cimg src=\"https://avatars.githubusercontent.com/u/131916?v=3\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eAdam Miskiewicz\u003c/b\u003e\u003c/sub\u003e](http://www.adammiskiewicz.com/)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=skevy \"Code\") | [\u003cimg src=\"https://avatars.githubusercontent.com/u/2685242?v=3\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eOri Livni\u003c/b\u003e\u003c/sub\u003e](http://www.orilivni.com)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=oriSomething \"Code\") |\n| :---: | :---: | :---: | :---: | :---: | :---: | :---: |\n| [\u003cimg src=\"https://avatars.githubusercontent.com/u/6182852?v=3\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eLeon Chen\u003c/b\u003e\u003c/sub\u003e](https://transcranial.github.io)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=transcranial \"Code\") | [\u003cimg src=\"https://avatars.githubusercontent.com/u/197597?v=3\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eChristopher Chedeau\u003c/b\u003e\u003c/sub\u003e](http://blog.vjeux.com/)\u003cbr /\u003e[💬](#question-vjeux \"Answering Questions\") [💻](https://github.com/prettier/prettier-atom/commits?author=vjeux \"Code\") [🔌](#plugin-vjeux \"Plugin/utility libraries\") | [\u003cimg src=\"https://avatars.githubusercontent.com/u/646693?v=3\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eChristoph Geschwind\u003c/b\u003e\u003c/sub\u003e](http://christoph-geschwind.de)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=1st8 \"Code\") | [\u003cimg src=\"https://avatars.githubusercontent.com/u/35026?v=3\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eAndrew Hutchings\u003c/b\u003e\u003c/sub\u003e](https://andrewhutchings.com)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=ahutchings \"Code\") | [\u003cimg src=\"https://avatars.githubusercontent.com/u/875591?v=3\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eDavid Schnurr\u003c/b\u003e\u003c/sub\u003e](http://davidschnurr.com)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=schnerd \"Code\") | [\u003cimg src=\"https://avatars.githubusercontent.com/u/484801?v=3\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eRyan Cole\u003c/b\u003e\u003c/sub\u003e](http://rycole.com/)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=ryancole \"Code\") | [\u003cimg src=\"https://avatars0.githubusercontent.com/u/11488612?v=3\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eDara Hak\u003c/b\u003e\u003c/sub\u003e](https://github.com/darahak)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=darahak \"Code\") [📖](https://github.com/prettier/prettier-atom/commits?author=darahak \"Documentation\") |\n| [\u003cimg src=\"https://avatars3.githubusercontent.com/u/487068?v=3\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eStephen John Sorensen\u003c/b\u003e\u003c/sub\u003e](http://www.stephenjohnsorensen.com/)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=spudly \"Code\") | [\u003cimg src=\"https://avatars2.githubusercontent.com/u/13285808?v=3\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eLukas Geiger\u003c/b\u003e\u003c/sub\u003e](https://github.com/lgeiger)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=lgeiger \"Code\") [⚠️](https://github.com/prettier/prettier-atom/commits?author=lgeiger \"Tests\") | [\u003cimg src=\"https://avatars2.githubusercontent.com/u/1517854?v=3\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eViktor Charypar\u003c/b\u003e\u003c/sub\u003e](https://github.com/charypar)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=charypar \"Code\") [⚠️](https://github.com/prettier/prettier-atom/commits?author=charypar \"Tests\") | [\u003cimg src=\"https://avatars0.githubusercontent.com/u/1007436?v=3\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eMats Högberg\u003c/b\u003e\u003c/sub\u003e](http://mats.hgbrg.se)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=mhgbrg \"Code\") | [\u003cimg src=\"https://avatars0.githubusercontent.com/u/2602767?v=3\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eRoman\u003c/b\u003e\u003c/sub\u003e](https://github.com/RoM4iK)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=RoM4iK \"Code\") | [\u003cimg src=\"https://avatars2.githubusercontent.com/u/1468518?v=3\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003evaibhav\u003c/b\u003e\u003c/sub\u003e](https://vaibhavchatarkar.com)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=da-vaibhav \"Code\") | [\u003cimg src=\"https://avatars1.githubusercontent.com/u/1935696?v=3\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eKarl Horky\u003c/b\u003e\u003c/sub\u003e](https://work.karlhorky.com)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=karlhorky \"Code\") |\n| [\u003cimg src=\"https://avatars3.githubusercontent.com/u/810438?v=3\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eDan Abramov\u003c/b\u003e\u003c/sub\u003e](http://twitter.com/dan_abramov)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=gaearon \"Code\") | [\u003cimg src=\"https://avatars3.githubusercontent.com/u/1227109?v=3\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eMurphy Randle\u003c/b\u003e\u003c/sub\u003e](https://sploding.rocks)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=splodingsocks \"Code\") [🐛](https://github.com/prettier/prettier-atom/issues?q=author%3Asplodingsocks \"Bug reports\") | [\u003cimg src=\"https://avatars3.githubusercontent.com/u/8517072?v=3\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eMatthieu Lemoine\u003c/b\u003e\u003c/sub\u003e](https://matthieulemoine.com)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=MatthieuLemoine \"Code\") | [\u003cimg src=\"https://avatars1.githubusercontent.com/u/37242?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eRon Green\u003c/b\u003e\u003c/sub\u003e](https://github.com/rgreenjr)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=rgreenjr \"Code\") | [\u003cimg src=\"https://avatars2.githubusercontent.com/u/1745854?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eHarold Treen\u003c/b\u003e\u003c/sub\u003e](https://haroldtreen.com)\u003cbr /\u003e[🐛](https://github.com/prettier/prettier-atom/issues?q=author%3Aharoldtreen \"Bug reports\") [💻](https://github.com/prettier/prettier-atom/commits?author=haroldtreen \"Code\") | [\u003cimg src=\"https://avatars1.githubusercontent.com/u/3447641?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eNikita Mashukov\u003c/b\u003e\u003c/sub\u003e](https://github.com/ferdibiflator)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=ferdibiflator \"Code\") | [\u003cimg src=\"https://avatars0.githubusercontent.com/u/8203211?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eSam Horton\u003c/b\u003e\u003c/sub\u003e](https://github.com/SavePointSam)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=SavePointSam \"Code\") [⚠️](https://github.com/prettier/prettier-atom/commits?author=SavePointSam \"Tests\") |\n| [\u003cimg src=\"https://avatars2.githubusercontent.com/u/5957709?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eolsonpm\u003c/b\u003e\u003c/sub\u003e](https://github.com/olsonpm)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=olsonpm \"Code\") | [\u003cimg src=\"https://avatars2.githubusercontent.com/u/63201?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eDavid Singleton\u003c/b\u003e\u003c/sub\u003e](http://dsingleton.co.uk)\u003cbr /\u003e[📖](https://github.com/prettier/prettier-atom/commits?author=dsingleton \"Documentation\") | [\u003cimg src=\"https://avatars3.githubusercontent.com/u/4378?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eChris Drackett\u003c/b\u003e\u003c/sub\u003e](https://github.com/chrisdrackett)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=chrisdrackett \"Code\") [🎨](#design-chrisdrackett \"Design\") | [\u003cimg src=\"https://avatars0.githubusercontent.com/u/6934200?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eLewis Liu\u003c/b\u003e\u003c/sub\u003e](https://github.com/lewisl9029)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=lewisl9029 \"Code\") [⚠️](https://github.com/prettier/prettier-atom/commits?author=lewisl9029 \"Tests\") | [\u003cimg src=\"https://avatars1.githubusercontent.com/u/5004326?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eChance Dickson\u003c/b\u003e\u003c/sub\u003e](http://chancedickson.com)\u003cbr /\u003e[💻](https://github.com/prettier/prettier-atom/commits?author=chancedickson \"Code\") |\n\u003c!-- ALL-CONTRIBUTORS-LIST:END --\u003e\n\nThis project follows the [all-contributors][all-contributors] specification. Contributions of any kind are welcome!\n\n## LICENSE\n\n[MIT](./LICENSE.md)\n\n[npm]: https://www.npmjs.com/\n[node]: https://nodejs.org\n[build-badge]: https://img.shields.io/travis/prettier/prettier-atom.svg?style=flat-square\n[build]: https://travis-ci.org/prettier/prettier-atom\n[coverage-badge]: https://img.shields.io/codecov/c/github/prettier/prettier-atom.svg?style=flat-square\n[coverage]: https://codecov.io/github/prettier/prettier-atom\n[dependencyci-badge]: https://dependencyci.com/github/prettier/prettier-atom/badge?style=flat-square\n[dependencyci]: https://dependencyci.com/github/prettier/prettier-atom\n[version-badge]: https://img.shields.io/apm/v/prettier-atom.svg?style=flat-square\n[package]: https://atom.io/packages/prettier-atom\n[downloads-badge]: https://img.shields.io/apm/dm/prettier-atom.svg?style=flat-square\n[license-badge]: https://img.shields.io/apm/l/prettier-atom.svg?style=flat-square\n[license]: https://github.com/prettier/prettier-atom/blob/master/LICENSE\n[prs-badge]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square\n[prs]: http://makeapullrequest.com\n[coc-badge]: https://img.shields.io/badge/code%20of-conduct-ff69b4.svg?style=flat-square\n[coc]: https://github.com/prettier/prettier-atom/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-atom/blob/master/other/ROADMAP.md\n[github-watch-badge]: https://img.shields.io/github/watchers/prettier/prettier-atom.svg?style=social\n[github-watch]: https://github.com/prettier/prettier-atom/watchers\n[github-star-badge]: https://img.shields.io/github/stars/prettier/prettier-atom.svg?style=social\n[github-star]: https://github.com/prettier/prettier-atom/stargazers\n[twitter]: https://twitter.com/intent/tweet?text=Check%20out%20prettier-atom!%20https://github.com/prettier/prettier-atom%20%F0%9F%91%8D\n[twitter-badge]: https://img.shields.io/twitter/url/https/github.com/prettier/prettier-atom.svg?style=social\n[emojis]: https://github.com/kentcdodds/all-contributors#emoji-key\n[all-contributors]: https://github.com/kentcdodds/all-contributors\n[all-contributors-badge]: https://img.shields.io/badge/all_contributors-13-orange.svg?style=flat-square\n[prettier]: https://github.com/prettier/prettier\n[prettier-eslint]: https://github.com/prettier/prettier-eslint\n[kentcdodds]: https://github.com/kentcdodds\n[james-long]: https://github.com/jlongster\n[robwise]: https://github.com/robwise\n[prettier-demo]: https://github.com/prettier/prettier-atom/raw/master/prettier-demo.gif\n[prettier-eslint-demo]: https://github.com/prettier/prettier-atom/raw/master/prettier-eslint-demo.gif\n","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprettier%2Fprettier-atom","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprettier%2Fprettier-atom","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprettier%2Fprettier-atom/lists"}