{"id":18353738,"url":"https://github.com/mayconfsousa/eslint-config-nebula","last_synced_at":"2026-03-03T18:01:34.263Z","repository":{"id":260622559,"uuid":"881874504","full_name":"mayconfsousa/eslint-config-nebula","owner":"mayconfsousa","description":"Elevate JS, TS, and React with best practices for stellar code quality and consistency","archived":false,"fork":false,"pushed_at":"2025-04-18T09:58:40.000Z","size":168,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-28T19:08:39.617Z","etag":null,"topics":["eslint","eslint-config","javascript","react","reactjs","static-code-analysis","style-guide","typescript"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mayconfsousa.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"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}},"created_at":"2024-11-01T12:23:33.000Z","updated_at":"2025-04-18T09:58:31.000Z","dependencies_parsed_at":null,"dependency_job_id":"9fa723da-80de-4391-b57a-32bd4af4f5e6","html_url":"https://github.com/mayconfsousa/eslint-config-nebula","commit_stats":null,"previous_names":["mayconfsousa/eslint-config-nebula"],"tags_count":18,"template":false,"template_full_name":null,"purl":"pkg:github/mayconfsousa/eslint-config-nebula","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mayconfsousa%2Feslint-config-nebula","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mayconfsousa%2Feslint-config-nebula/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mayconfsousa%2Feslint-config-nebula/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mayconfsousa%2Feslint-config-nebula/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mayconfsousa","download_url":"https://codeload.github.com/mayconfsousa/eslint-config-nebula/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mayconfsousa%2Feslint-config-nebula/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30053986,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-03T17:46:22.538Z","status":"ssl_error","status_checked_at":"2026-03-03T17:46:22.036Z","response_time":61,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["eslint","eslint-config","javascript","react","reactjs","static-code-analysis","style-guide","typescript"],"created_at":"2024-11-05T21:42:59.121Z","updated_at":"2026-03-03T18:01:34.246Z","avatar_url":"https://github.com/mayconfsousa.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# eslint-config-nebula\n\n[![npm version](https://img.shields.io/npm/v/eslint-config-nebula)](https://www.npmjs.com/package/eslint-config-nebula)\n\n## What's included?\n\n- [Perfectionist plugin](https://www.npmjs.com/package/eslint-plugin-perfectionist) - Enforces consistent sorting for objects, imports, TypeScript types, enums, JSX props, and more.\n- [Prettier plugin](https://www.npmjs.com/package/eslint-plugin-prettier) - Integrates Prettier with ESLint, reporting formatting issues as ESLint errors.\n- [React plugin](https://www.npmjs.com/package/eslint-plugin-react) - Provides linting rules for React applications.\n- [React Hooks plugin](https://www.npmjs.com/package/eslint-plugin-react-hooks) - Enforces the [Rules of Hooks](https://react.dev/reference/rules/rules-of-hooks).\n- [React Refresh plugin](https://www.npmjs.com/package/eslint-plugin-react-refresh) - Ensures components support fast refresh updates.\n- [TailwindCSS plugin](https://www.npmjs.com/package/eslint-plugin-tailwindcss) - Enforces best practices and consistency with Tailwind CSS.\n- [Unused Imports plugin](https://www.npmjs.com/package/eslint-plugin-unused-imports) - Detects and removes unused ES6 imports.\n- [React Refresh plugin](https://www.npmjs.com/package/eslint-plugin-react-refresh) - Ensures components are compatible with fast refresh updates.\n\n## Installation\n\n```bash\nnpm add -D eslint eslint-config-nebula\npnpm add -D eslint eslint-config-nebula\nyarn add -D eslint eslint-config-nebula\nbun add -D eslint eslint-config-nebula\n```\n\n## Configuration\n\n### Node\n\n```js\n// eslint.config.mjs\n\nimport nebula from 'eslint-config-nebula'\n\nexport default [\n  ...nebula.node,\n  // Override any settings from the \"eslint-config-nebula\" config here\n]\n\n```\n### React\n\n```js\n// eslint.config.mjs\n\nimport nebula from 'eslint-config-nebula'\n\nexport default [\n  ...nebula.react,\n  // Override any settings from the \"eslint-config-nebula\" config here\n]\n```\n\n### React + Tailwind\n\n```js\n// eslint.config.mjs\n\nimport nebula from 'eslint-config-nebula'\n\nexport default [\n  ...nebula.reactTailwind,\n  // Override any settings from the \"eslint-config-nebula\" config here\n]\n```\n\n### VS Code\n\n```jsonc\n// package.json\n\n\"scripts\": {\n  \"lint\": \"eslint --fix \u0026\u0026 tsc --noEmit\"\n},\n```\n\u003e Recommend to use [ESlint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) extension\n\n```jsonc\n// settings.json\n\n\"[javascript]\": {\n  \"editor.defaultFormatter\": \"dbaeumer.vscode-eslint\"\n},\n\"[javascriptreact]\": {\n  \"editor.defaultFormatter\": \"dbaeumer.vscode-eslint\"\n},\n\"[typescript]\": {\n  \"editor.defaultFormatter\": \"dbaeumer.vscode-eslint\"\n},\n\"[typescriptreact]\": {\n  \"editor.defaultFormatter\": \"dbaeumer.vscode-eslint\"\n},\n\"editor.codeActionsOnSave\": {\n  \"source.fixAll\": \"explicit\"\n},\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmayconfsousa%2Feslint-config-nebula","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmayconfsousa%2Feslint-config-nebula","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmayconfsousa%2Feslint-config-nebula/lists"}