{"id":25847546,"url":"https://github.com/dakdevs/eslint-plugin-dak","last_synced_at":"2025-10-09T07:33:59.301Z","repository":{"id":243789002,"uuid":"813450512","full_name":"dakdevs/eslint-plugin-dak","owner":"dakdevs","description":null,"archived":false,"fork":false,"pushed_at":"2024-06-11T05:50:53.000Z","size":408,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-16T21:43:43.884Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/dakdevs.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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-11T05:39:54.000Z","updated_at":"2024-06-11T05:50:56.000Z","dependencies_parsed_at":null,"dependency_job_id":"c23a5b2b-3d40-4452-86e8-ae1103caffb7","html_url":"https://github.com/dakdevs/eslint-plugin-dak","commit_stats":null,"previous_names":["vinlock/eslint-plugin-dak","dakdevs/eslint-plugin-dak"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dakdevs/eslint-plugin-dak","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dakdevs%2Feslint-plugin-dak","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dakdevs%2Feslint-plugin-dak/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dakdevs%2Feslint-plugin-dak/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dakdevs%2Feslint-plugin-dak/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dakdevs","download_url":"https://codeload.github.com/dakdevs/eslint-plugin-dak/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dakdevs%2Feslint-plugin-dak/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279000960,"owners_count":26082973,"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","status":"online","status_checked_at":"2025-10-09T02:00:07.460Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":"2025-03-01T10:27:34.951Z","updated_at":"2025-10-09T07:33:59.286Z","avatar_url":"https://github.com/dakdevs.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"**forked from [mysticatea/template-eslint-plugin](https://github.com/mysticatea/template-eslint-plugin)**\n\n---\n\nThis is a trial of [GitHub Repository Template](https://github.blog/2019-06-06-generate-new-repositories-with-repository-templates/).\n\nPlease update `package.json` after you created new repository with this template.\n\n**File Structure**:\n\n- `docs/rules/` is the directory to put documentation.\n- `src/rules/` is the directory to put rule definitions.\n- `scripts/` is the directory to put development scripts.\n- `tests/` is the directory to put tests for `src/`.\n- `.eslintignore` and `.eslintrc.js` are the configuration to lint this repository.\n\n**Dependencies**:\n\nThis template uses [Jest](https://jestjs.io/) and [GitHub Actions](https://github.co.jp/features/actions) for tests, as same as ESLint itself. If you want to use other tools, customize it.\n\n**Development Tools**:\n\n- `npm run add-rule foo` command adds a rule definition.\n- `npm update` command updates the following stuff by the `meta` property of rules:\n  - the header of `docs/rules/*.md`.\n  - `lib/configs/recommended.ts` file.\n  - `lib/index.ts` file.\n  - the rule table in `README.md` file.\n\nBelow is an example of README.\n\n---\n\n# eslint-plugin-xxxx (template)\n\n\u003c!--\n[![npm version](https://img.shields.io/npm/v/eslint-plugin-xxxx.svg)](https://www.npmjs.com/package/eslint-plugin-xxxx)\n[![Downloads/month](https://img.shields.io/npm/dm/eslint-plugin-xxxx.svg)](http://www.npmtrends.com/eslint-plugin-xxxx)\n[![Build Status](https://travis-ci.org/mysticatea/eslint-plugin-xxxx.svg?branch=master)](https://travis-ci.org/mysticatea/eslint-plugin-xxxx)\n[![Coverage Status](https://codecov.io/gh/mysticatea/eslint-plugin-xxxx/branch/master/graph/badge.svg)](https://codecov.io/gh/mysticatea/eslint-plugin-xxxx)\n[![Dependency Status](https://david-dm.org/mysticatea/eslint-plugin-xxxx.svg)](https://david-dm.org/mysticatea/eslint-plugin-xxxx)\n--\u003e\n\nA template for ESLint plugins.\n\n## Installation\n\nUse [npm](https://www.npmjs.com/) or a compatibility tool to install.\n\n```\n$ npm install --save-dev eslint eslint-plugin-xxxx\n```\n\n### Requirements\n\n- Node.js v8.10.0 or newer versions.\n- ESLint v5.16.0 or newer versions.\n\n## Usage\n\nWrite your config file such as `.eslintrc.yml`.\n\n```yml\nplugins:\n  - xxxx\nrules:\n  xxxx/example-rule: error\n```\n\nSee also [Configuring ESLint](https://eslint.org/docs/user-guide/configuring).\n\n## Configs\n\n- `xxxx/recommended` ... enables the recommended rules.\n\n## Rules\n\n\u003c!--RULE_TABLE_BEGIN--\u003e\n\n### Stylistic Issues\n\n| Rule ID                                           | Description      |     |\n| :------------------------------------------------ | :--------------- | :-: |\n| [xxxx/example-rule](./docs/rules/example-rule.md) | An example rule. | ⭐️ |\n\n\u003c!--RULE_TABLE_END--\u003e\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## Changelog\n\n- [GitHub Releases]()\n\n## Contributing\n\nWelcome your contribution!\n\nSee also [ESLint Contribution Guide](https://eslint.org/docs/developer-guide/contributing/).\n\n### Development Tools\n\n- `npm test` runs tests.\n- `npm run update` updates the package version. And it updates `src/configs/recommended.ts`, `lib/index.ts`, and `README.md`'s rule table. See also [npm version CLI command](https://docs.npmjs.com/cli/version).\n- `npm run add-rule \u003cRULE_ID\u003e` creates three files to add a new rule.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdakdevs%2Feslint-plugin-dak","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdakdevs%2Feslint-plugin-dak","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdakdevs%2Feslint-plugin-dak/lists"}