{"id":15893154,"url":"https://github.com/ridays2001/eslint-config-tulip","last_synced_at":"2026-02-13T01:43:52.478Z","repository":{"id":46667512,"uuid":"288341009","full_name":"ridays2001/eslint-config-tulip","owner":"ridays2001","description":"🌷 Sharable ESLint configuration.","archived":false,"fork":false,"pushed_at":"2022-01-01T07:25:09.000Z","size":98,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-09T05:47:42.785Z","etag":null,"topics":["clean-code","eslint","eslint-config","eslint-shareable-config","eslint-shareable-configs","eslintconfig","hacktoberfest","lint","linter"],"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/ridays2001.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":"2020-08-18T03:04:34.000Z","updated_at":"2023-07-14T00:35:09.000Z","dependencies_parsed_at":"2022-09-06T23:40:35.729Z","dependency_job_id":null,"html_url":"https://github.com/ridays2001/eslint-config-tulip","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/ridays2001/eslint-config-tulip","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ridays2001%2Feslint-config-tulip","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ridays2001%2Feslint-config-tulip/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ridays2001%2Feslint-config-tulip/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ridays2001%2Feslint-config-tulip/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ridays2001","download_url":"https://codeload.github.com/ridays2001/eslint-config-tulip/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ridays2001%2Feslint-config-tulip/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269699721,"owners_count":24461226,"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-08-10T02:00:08.965Z","response_time":71,"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":["clean-code","eslint","eslint-config","eslint-shareable-config","eslint-shareable-configs","eslintconfig","hacktoberfest","lint","linter"],"created_at":"2024-10-06T08:08:12.115Z","updated_at":"2026-02-13T01:43:47.443Z","avatar_url":"https://github.com/ridays2001.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg src='https://i.imgur.com/BNCvB3W.png' align='right' width='25%' alt='Tulip'\u003e\n\n# ESLint Config Tulip\n\nSharable ESLint configuration.\nThis configuration is made for Node.js apps.\n\n\u003cbr/\u003e\n\u003cbr/\u003e\n\n### Instructions:\n\n1. [Install the package](#installation).\n2. [Extend it in your eslint configuration](#usage).\n3. Enjoy cleaner code!. 🎉\n4. [Contribute!](#contribute)\n\n#### Installation\n\nMake sure you are using Node.js v16.13.1 or higher.\nOpen command prompt (or terminal) in your project folder and use:\n\n```bash\nnpm i -D eslint eslint-config-tulip\n```\n\nThis will install the configuration module and you can now use it in your project.\n\n\u003cdetails\u003e\n    \u003csummary\u003eAdding TypeScript\u003c/summary\u003e\n\nIf you are using TypeScript, then you also need to install the plugin and parser for TypeScript:\n\n```bash\nnpm i -D @typescript-eslint/eslint-plugin @typescript-eslint/parser\n```\n\n\u003c/details\u003e\n\u003cbr\u003e\n\n### Usage\n\nOnce you have installed the configuration module, you need to tell eslint to use it.\nYou can do this by extending it in your config.\nESLint can be configured either in your `package.json` file or in a separate eslint config file.\nFor more instructions on configuring eslint, please refer to\n[ESLint getting started guide ↗](https://eslint.org/docs/user-guide/getting-started).\n\nFor `package.json`:\n\n```json\n{\n    \"name\": \"your-project\",\n    ...\n    \"eslintConfig\": {\n        \"extends\": \"tulip\"\n    }\n}\n```\n\nFor eslint configuration files (`.eslintrc`, `.eslintrc.json`, `.eslintrc.js`, or `.eslintrc.yml`):\n\n```json\n{\n\t\"extends\": \"tulip\"\n}\n```\n\nYou can also integrate eslint into your code editor.\nFollow the instructions in the [editors section↗](https://eslint.org/docs/user-guide/integrations#editors) to set it up for your editor.\n\n\u003cdetails\u003e\n    \u003csummary\u003eAdding TypeScript\u003c/summary\u003e\n\nIf you are using TypeScript, then you need to extend the typescript configuration.\n\n```json\n{\n    ...\n\t\"root\": true,\n\t\"parser\": \"@typescript-eslint/parser\",\n\t\"plugins\": [\"@typescript-eslint\"],\n    \"extends\": \"tulip/typescript\"\n    ...\n}\n```\n\n\u003c/details\u003e\n\u003cbr\u003e\n\n\u003cdetails\u003e\n\t\u003csummary\u003eUsing Prettier\u003c/summary\u003e\n\nIf you wish to use prettier along with eslint, then you need to use the prettier module.\nThis will turn off certain eslint rules that interfere with prettier.\n\n```json\n{\n\t\"extends\": \"tulip/prettier\"\n}\n```\n\nUsing Typescript? Don't worry, I've got you covered!\n\n```json\n{\n\t\"extends\": \"tulip/prettier-ts\"\n}\n```\n\n\u003c/details\u003e\n\u003cbr\u003e\n\n### Customizing\n\nThis ESLint configuration comes with the latest rules enabled according to my style guide.\nBut, you may want to tweak it depending upon your preferences. Here's an example:\n\n```json\n{\n\t\"extends\": \"tulip\",\n\t\"rules\": {\n\t\t\"sort-keys\": \"off\"\n\t}\n}\n```\n\nThe `sort-keys` rule requires you to sort your keys alphabetically.\nThis is helpful when you have too many keys in the object, but you may want to turn this rule off if you are following some other order.\n\nFor more information, refer to the [Official ESLint Documentation↗](https://eslint.org/docs/user-guide/getting-started#configuration-1) or [a more detailed one here↗](https://eslint.org/docs/user-guide/configuring).\\\nHere's the [list of all Available ESLint rules↗](https://eslint.org/docs/rules/).\n\n### Contribute\n\n1. Fork this repository.\n2. Make your changes.\n3. Push your changes to a new branch in your fork.\n4. Submit a pull request!\n\n### Credits\n\nLicense - MIT.\n\n\u0026copy; [Riday ♡](https://github.com/ridays2001 'My GitHub Profile ↗').\n\n\u003ca href='https://riday.me/discord'\u003e\n\t\u003cimg src='https://img.shields.io/badge/Discord-Riday%20%F0%9F%92%99%237468-ff69b4?logo=discord\u0026logoColor=ff69b4\u0026logoWidth=30\u0026labelColor=0080ff\u0026link=https://discord.gg/muuyMD9' alt='Discord - Riday 💙#7468'\u003e\n\u003c/a\u003e\n\nThank you to all those who helped me. 💙\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fridays2001%2Feslint-config-tulip","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fridays2001%2Feslint-config-tulip","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fridays2001%2Feslint-config-tulip/lists"}