{"id":19441553,"url":"https://github.com/standard/eslint-config-standard-jsx","last_synced_at":"2025-04-12T21:19:19.442Z","repository":{"id":3872063,"uuid":"51187437","full_name":"standard/eslint-config-standard-jsx","owner":"standard","description":"ESLint Shareable Config for JSX support in JavaScript Standard Style","archived":false,"fork":false,"pushed_at":"2023-09-16T07:25:37.000Z","size":68,"stargazers_count":102,"open_issues_count":3,"forks_count":28,"subscribers_count":10,"default_branch":"master","last_synced_at":"2024-12-27T09:31:23.243Z","etag":null,"topics":["development","ecmascript","es6","eslint","javascript","linter","nodejs","standard","static-code-analysis","style-guide"],"latest_commit_sha":null,"homepage":"http://standardjs.com","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/standard.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null},"funding":{"github":["standard","feross"]}},"created_at":"2016-02-06T03:15:19.000Z","updated_at":"2024-11-11T05:51:19.000Z","dependencies_parsed_at":"2022-08-06T14:15:36.593Z","dependency_job_id":null,"html_url":"https://github.com/standard/eslint-config-standard-jsx","commit_stats":{"total_commits":127,"total_committers":16,"mean_commits":7.9375,"dds":"0.17322834645669294","last_synced_commit":"b21a96c35092f7e70195e5a58c410fc981d2830b"},"previous_names":["feross/eslint-config-standard-jsx"],"tags_count":30,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/standard%2Feslint-config-standard-jsx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/standard%2Feslint-config-standard-jsx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/standard%2Feslint-config-standard-jsx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/standard%2Feslint-config-standard-jsx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/standard","download_url":"https://codeload.github.com/standard/eslint-config-standard-jsx/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248631944,"owners_count":21136593,"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":["development","ecmascript","es6","eslint","javascript","linter","nodejs","standard","static-code-analysis","style-guide"],"created_at":"2024-11-10T15:36:12.449Z","updated_at":"2025-04-12T21:19:19.420Z","avatar_url":"https://github.com/standard.png","language":"JavaScript","funding_links":["https://github.com/sponsors/standard","https://github.com/sponsors/feross"],"categories":[],"sub_categories":[],"readme":"# eslint-config-standard-jsx [![travis][travis-image]][travis-url] [![npm][npm-image]][npm-url] [![downloads][downloads-image]][downloads-url] [![javascript style guide][standard-image]][standard-url]\n\n[travis-image]: https://img.shields.io/travis/standard/eslint-config-standard-jsx/master.svg\n[travis-url]: https://travis-ci.org/standard/eslint-config-standard-jsx\n[npm-image]: https://img.shields.io/npm/v/eslint-config-standard-jsx.svg\n[npm-url]: https://npmjs.org/package/eslint-config-standard-jsx\n[downloads-image]: https://img.shields.io/npm/dm/eslint-config-standard-jsx.svg\n[downloads-url]: https://npmjs.org/package/eslint-config-standard-jsx\n[standard-image]: https://img.shields.io/badge/code_style-standard-brightgreen.svg\n[standard-url]: https://standardjs.com\n\n#### An ESLint [Shareable Config](http://eslint.org/docs/developer-guide/shareable-configs) for JSX support in [JavaScript Standard Style](http://standardjs.com)\n\n[![js-standard-style](https://cdn.rawgit.com/feross/standard/master/badge.svg)](http://standardjs.com)\n\n## Install\n\nThis module is for advanced users. You probably want to use [`standard`](http://standardjs.com) instead :)\n\n```bash\nnpm install eslint-config-standard-jsx\n```\n\n## Usage\n\nShareable configs are designed to work with the `extends` feature of `.eslintrc` files.\nYou can learn more about\n[Shareable Configs](http://eslint.org/docs/developer-guide/shareable-configs) on the\nofficial ESLint website.\n\nThis Shareable Config adds extra JSX style rules to the baseline JavaScript Standard Style\nrules provided in\n[`eslint-config-standard`](https://www.npmjs.com/package/eslint-config-standard).\nIt doesn't assume that you're using React, so other virtual DOM libraries like\n`virtual-dom` and `deku` are supported.\n\nEven though this config is JSX only (no React), it makes use of\n[`eslint-plugin-react`](https://npmjs.com/package/eslint-plugin-react) for its generic\nJSX rules.\n\n(If you want React-specific rules too, consider using\n[`eslint-config-standard-react`](https://www.npmjs.com/package/eslint-config-standard-react)\ninstead.)\n\nHere's how to install everything you need:\n\n```bash\nnpm install --save-dev eslint-config-standard eslint-config-standard-jsx eslint-plugin-promise eslint-plugin-import eslint-plugin-node eslint-plugin-react\n```\n\nThen, add this to your .eslintrc file:\n\n```\n{\n  \"extends\": [\"standard\", \"standard-jsx\"]\n}\n```\n\n*Note: We omitted the `eslint-config-` prefix since it is automatically assumed by ESLint.*\n\nYou can override settings from the shareable config by adding them directly into your\n`.eslintrc` file.\n\n### Looking for something easier than this?\n\nThe easiest way to use JavaScript Standard Style to check your code is to use the\n[`standard`](http://standardjs.com) package. This comes with a global\nNode command line program (`standard`) that you can run or add to your `npm test` script\nto quickly check your style.\n\n## Badge\n\nUse this in one of your projects? Include one of these badges in your readme to\nlet people know that your code is using the standard style.\n\n[![js-standard-style](https://cdn.rawgit.com/feross/standard/master/badge.svg)](http://standardjs.com)\n\n```markdown\n[![js-standard-style](https://cdn.rawgit.com/feross/standard/master/badge.svg)](http://standardjs.com)\n```\n\n[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com)\n\n```markdown\n[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com)\n```\n\n## Learn more\n\nFor the full listing of rules, editor plugins, FAQs, and more, visit the main\n[JavaScript Standard Style repo](http://standardjs.com).\n\n## License\n\nMIT. Copyright (c) [Feross Aboukhadijeh](http://feross.org).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstandard%2Feslint-config-standard-jsx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstandard%2Feslint-config-standard-jsx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstandard%2Feslint-config-standard-jsx/lists"}