{"id":16434404,"url":"https://github.com/zce/eslint-config-standard-ts","last_synced_at":"2025-06-27T22:39:03.097Z","repository":{"id":43334598,"uuid":"280604958","full_name":"zce/eslint-config-standard-ts","owner":"zce","description":"An extension of eslint-config-standard without peer dependencies, made for TypeScript.","archived":false,"fork":false,"pushed_at":"2023-11-18T10:34:11.000Z","size":32,"stargazers_count":1,"open_issues_count":4,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-31T03:02:57.143Z","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/zce.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},"funding":{"github":"zce"}},"created_at":"2020-07-18T07:23:35.000Z","updated_at":"2022-05-15T18:30:03.000Z","dependencies_parsed_at":"2024-06-20T00:08:42.684Z","dependency_job_id":null,"html_url":"https://github.com/zce/eslint-config-standard-ts","commit_stats":{"total_commits":20,"total_committers":2,"mean_commits":10.0,"dds":"0.19999999999999996","last_synced_commit":"a8fe9bbd4eb62e45fc7d567497acd03cc6825d51"},"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zce%2Feslint-config-standard-ts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zce%2Feslint-config-standard-ts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zce%2Feslint-config-standard-ts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zce%2Feslint-config-standard-ts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zce","download_url":"https://codeload.github.com/zce/eslint-config-standard-ts/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248298316,"owners_count":21080320,"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-10-11T08:49:03.920Z","updated_at":"2025-04-11T18:35:38.329Z","avatar_url":"https://github.com/zce.png","language":"JavaScript","funding_links":["https://github.com/sponsors/zce"],"categories":[],"sub_categories":[],"readme":"# eslint-config-standard-ts\n\n[![License][license-img]][license-url]\n[![NPM Downloads][downloads-img]][downloads-url]\n[![NPM Version][version-img]][version-url]\n[![Dependency Status][dependency-img]][dependency-url]\n[![devDependency Status][devdependency-img]][devdependency-url]\n[![Code Style][style-img]][style-url]\n\n\u003e An extension of eslint-config-standard without peer dependencies, made for TypeScript.\n\n## Installation\n\n```shell\n$ npm install eslint eslint-config-standard-ts --save-dev\n\n# or yarn\n$ yarn add eslint eslint-config-standard-ts -dev\n```\n\n## Usage\n\nIn your eslint config:\n\n```javascript\n// .eslintrc.js\nmodule.exports = {\n  extends: 'standard-ts',\n  parserOptions: {\n    project: './tsconfig.json'\n  }\n}\n```\n\nExample command line usage for ESLint v7:\n\n```shell\n$ npx eslint .\n```\n\n## Motivation\n\nDue to [a known limitation in ESLint](https://github.com/eslint/eslint/issues/3458). Many [ESLint shareable config](https://eslint.org/docs/developer-guide/shareable-configs) require a large number of peer dependencies. This leads to many inconveniences for developers to use.\n\nMy idea is to ignore these problems 😅, and install these peer dependencies directly.\n\nBecause I think these problems no longer exist in modern npm.\n\nSo this module is just a dependencies wrapper, internal use of [eslint-config-standard-with-typescript](https://github.com/standard/eslint-config-standard-with-typescript) and its peer dependencies.\n\n## Related\n\n- [zce/eslint-config-standardx](https://github.com/zce/eslint-config-standardx) - An extension of eslint-config-standard without peer dependencies, made for JavaScript.\n\n## Contributing\n\n1. **Fork** it on GitHub!\n2. **Clone** the fork to your own machine.\n3. **Checkout** your feature branch: `git checkout -b my-awesome-feature`\n4. **Commit** your changes to your own branch: `git commit -am 'Add some feature'`\n5. **Push** your work back up to your fork: `git push -u origin my-awesome-feature`\n6. Submit a **Pull Request** so that we can review your changes.\n\n\u003e **NOTE**: Be sure to merge the latest from \"upstream\" before making a pull request!\n\n## License\n\n[MIT](LICENSE) \u0026copy; [zce](https://zce.me)\n\n\n\n[license-img]: https://img.shields.io/github/license/zce/eslint-config-standard-ts\n[license-url]: https://github.com/zce/eslint-config-standard-ts/blob/master/LICENSE\n[downloads-img]: https://img.shields.io/npm/dm/eslint-config-standard-ts\n[downloads-url]: https://npmjs.org/package/eslint-config-standard-ts\n[version-img]: https://img.shields.io/npm/v/eslint-config-standard-ts\n[version-url]: https://npmjs.org/package/eslint-config-standard-ts\n[dependency-img]: https://img.shields.io/david/zce/eslint-config-standard-ts\n[dependency-url]: https://david-dm.org/zce/eslint-config-standard-ts\n[devdependency-img]: https://img.shields.io/david/dev/zce/eslint-config-standard-ts\n[devdependency-url]: https://david-dm.org/zce/eslint-config-standard-ts?type=dev\n[style-img]: https://img.shields.io/badge/code_style-standard-brightgreen\n[style-url]: https://standardjs.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzce%2Feslint-config-standard-ts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzce%2Feslint-config-standard-ts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzce%2Feslint-config-standard-ts/lists"}