{"id":18941001,"url":"https://github.com/dreipol/eslint-plugin-export-keys","last_synced_at":"2025-10-17T10:49:35.196Z","repository":{"id":57109754,"uuid":"65221171","full_name":"dreipol/eslint-plugin-export-keys","owner":"dreipol","description":"Eslint plugin to check the object keys exported by your javascript modules","archived":false,"fork":false,"pushed_at":"2016-08-10T14:07:49.000Z","size":17,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-02-01T08:17:54.762Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/dreipol.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}},"created_at":"2016-08-08T16:37:40.000Z","updated_at":"2016-08-09T14:08:54.000Z","dependencies_parsed_at":"2022-08-21T08:00:24.980Z","dependency_job_id":null,"html_url":"https://github.com/dreipol/eslint-plugin-export-keys","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dreipol%2Feslint-plugin-export-keys","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dreipol%2Feslint-plugin-export-keys/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dreipol%2Feslint-plugin-export-keys/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dreipol%2Feslint-plugin-export-keys/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dreipol","download_url":"https://codeload.github.com/dreipol/eslint-plugin-export-keys/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239939763,"owners_count":19721915,"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":[],"created_at":"2024-11-08T12:25:14.375Z","updated_at":"2025-10-17T10:49:30.143Z","avatar_url":"https://github.com/dreipol.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# eslint-plugin-export-keys\n\n[![Build Status][travis-image]][travis-url]\n\n[![NPM version][npm-version-image]][npm-url]\n[![NPM downloads][npm-downloads-image]][npm-url]\n[![MIT License][license-image]][license-url]\n\nEslint plugin to check the object keys exported by your javascript modules\n\n## Installation\n\n```shell\nnpm i @dreipol/eslint-plugin-export-keys -D\n```\n\n## Rules\n\n### Order\n\nEnabling the `export-keys/order` rule you will be able to specify the the order in which your object keys should be exported\n\nFor example:\n\n```json\n{\n  \"plugins\": [\n    \"@dreipol/export-keys\"\n  ],\n  \"rules\": {\n    \"export-keys/order\": [1, [\"template\", \"data\", \"ready\"]]\n  }\n}\n```\n\nThis rule will check that all your modules exporting some of all the keys defined inside the `keys` option will be exported in the order defined:\n\n```js\nexport default {\n  template: {},\n  data: {},\n  ready: {},\n}\n\n// or also valid\nexport default {\n  template: {},\n  ready: {},\n}\n\n// this will throw\nexport default {\n  ready: {},\n  template: {},\n}\n```\n\nThis rule works with `module.exports` and `exports` as well\n\n[travis-image]:https://img.shields.io/travis/dreipol/eslint-plugin-export-keys.svg?style=flat-square\n[travis-url]:https://travis-ci.org/dreipol/eslint-plugin-export-keys\n\n[license-image]:http://img.shields.io/badge/license-MIT-000000.svg?style=flat-square\n[license-url]:LICENSE.txt\n\n[npm-version-image]:http://img.shields.io/npm/v/@dreipol/eslint-plugin-export-keys.svg?style=flat-square\n[npm-downloads-image]:http://img.shields.io/npm/dm/@dreipol/eslint-plugin-export-keys.svg?style=flat-square\n[npm-url]:https://npmjs.org/package/@dreipol/eslint-plugin-export-keys\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdreipol%2Feslint-plugin-export-keys","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdreipol%2Feslint-plugin-export-keys","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdreipol%2Feslint-plugin-export-keys/lists"}