{"id":13800786,"url":"https://github.com/eslint-community/eslint-plugin-es-x","last_synced_at":"2025-05-14T19:09:56.521Z","repository":{"id":39987781,"uuid":"453568604","full_name":"eslint-community/eslint-plugin-es-x","owner":"eslint-community","description":"ESLint plugin about ECMAScript syntactic features.","archived":false,"fork":false,"pushed_at":"2025-04-29T02:06:24.000Z","size":1511,"stargazers_count":131,"open_issues_count":6,"forks_count":9,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-04-29T02:13:47.088Z","etag":null,"topics":["ecmascript","eslint","eslint-plugin","javascript","npm-package"],"latest_commit_sha":null,"homepage":"https://eslint-community.github.io/eslint-plugin-es-x/","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/eslint-community.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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":["eslint","ota-meshi"],"open_collective":"eslint","tidelift":"npm/eslint"}},"created_at":"2022-01-30T02:22:11.000Z","updated_at":"2025-04-29T02:06:26.000Z","dependencies_parsed_at":"2023-02-18T14:45:19.339Z","dependency_job_id":"70c5a546-1e67-4b52-8180-ec8eae8ae604","html_url":"https://github.com/eslint-community/eslint-plugin-es-x","commit_stats":{"total_commits":215,"total_committers":11,"mean_commits":"19.545454545454547","dds":0.6418604651162791,"last_synced_commit":"6d43a1bbc850b6e9e5f221f4a2a40a6ecb9d8d3a"},"previous_names":[],"tags_count":43,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eslint-community%2Feslint-plugin-es-x","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eslint-community%2Feslint-plugin-es-x/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eslint-community%2Feslint-plugin-es-x/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eslint-community%2Feslint-plugin-es-x/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eslint-community","download_url":"https://codeload.github.com/eslint-community/eslint-plugin-es-x/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254209859,"owners_count":22032897,"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":["ecmascript","eslint","eslint-plugin","javascript","npm-package"],"created_at":"2024-08-04T00:01:16.242Z","updated_at":"2025-05-14T19:09:54.871Z","avatar_url":"https://github.com/eslint-community.png","language":"JavaScript","funding_links":["https://github.com/sponsors/eslint","https://github.com/sponsors/ota-meshi","https://opencollective.com/eslint","https://tidelift.com/funding/github/npm/eslint"],"categories":["Plugins","Utilities"],"sub_categories":["Compatibility","ESLint Plugins"],"readme":"# eslint-plugin-es-x\n\n[![npm version](https://img.shields.io/npm/v/eslint-plugin-es-x.svg)](https://www.npmjs.com/package/eslint-plugin-es-x)\n[![Downloads/month](https://img.shields.io/npm/dm/eslint-plugin-es-x.svg)](http://www.npmtrends.com/eslint-plugin-es-x)\n[![Build Status](https://github.com/eslint-community/eslint-plugin-es-x/actions/workflows/ci.yml/badge.svg)](https://github.com/eslint-community/eslint-plugin-es-x/actions)\n\nESLint plugin which disallows each ECMAScript syntax.\n\n\u003e Forked from [eslint-plugin-es](https://github.com/mysticatea/eslint-plugin-es). As the original repository seems [no longer maintained](https://github.com/mysticatea/eslint-plugin-es/issues/72).\n\n## 🏁 Goal\n\n[Espree](https://github.com/eslint/espree#readme), the default parser of [ESLint](https://eslint.org/), has supported `ecmaVersion` option.\nHowever, the error messages of new syntax are not readable (e.g., \"unexpected token\" or something like).\n\nWhen we use this plugin along with the latest `ecmaVersion` option value, it tells us the readable error message for the new syntax, such as \"ES2020 BigInt is forbidden.\"\nPlus, this plugin lets us disable each syntactic feature individually.\n\n## 📖 Usage\n\nSee [documentation](https://eslint-community.github.io/eslint-plugin-es-x/)\n\n## 🚥 Semantic Versioning Policy\n\nThis plugin follows [semantic versioning](http://semver.org/) and [ESLint's semantic versioning policy](https://github.com/eslint/eslint#semantic-versioning-policy).\n\n- We will release a new minor version to add new rules when TC39 decided to advance proposals to Stage 4. In the minor releases, we don't update configs.\n- We will release a new major version to update configs when new ECMAScript snapshots are available.\n\n## 📰 Changelog\n\nSee [releases](https://github.com/eslint-community/eslint-plugin-es-x/releases).\n\n## ❤️ Contributing\n\nWelcome contributing!\n\nPlease use GitHub's Issues/PRs.\n\n### Development Tools\n\n- `npm test` runs tests and measures coverage.\n- `npm run clean` removes the coverage result of `npm test` command.\n- `npm run coverage` shows the coverage result of the last `npm test` command.\n- `npm run docs:build` builds documentation.\n- `npm run docs:watch` builds documentation on each file change.\n- `npm run watch` runs tests on each file change.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feslint-community%2Feslint-plugin-es-x","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feslint-community%2Feslint-plugin-es-x","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feslint-community%2Feslint-plugin-es-x/lists"}