{"id":23276314,"url":"https://github.com/cesium/eslint-config-cesium","last_synced_at":"2026-04-30T15:32:13.083Z","repository":{"id":189530433,"uuid":"680852278","full_name":"cesium/eslint-config-cesium","owner":"cesium","description":"ESLint configuration used by CeSIUM","archived":false,"fork":false,"pushed_at":"2023-09-28T22:01:19.000Z","size":199,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-26T21:42:51.430Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/@cesiuminho/eslint-config","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/cesium.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":"2023-08-20T16:05:31.000Z","updated_at":"2023-08-21T02:12:39.000Z","dependencies_parsed_at":"2023-09-28T23:11:23.651Z","dependency_job_id":null,"html_url":"https://github.com/cesium/eslint-config-cesium","commit_stats":null,"previous_names":["cesium/eslint-config-cesium"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/cesium/eslint-config-cesium","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cesium%2Feslint-config-cesium","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cesium%2Feslint-config-cesium/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cesium%2Feslint-config-cesium/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cesium%2Feslint-config-cesium/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cesium","download_url":"https://codeload.github.com/cesium/eslint-config-cesium/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cesium%2Feslint-config-cesium/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32469344,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"ssl_error","status_checked_at":"2026-04-30T13:12:06.837Z","response_time":57,"last_error":"SSL_read: 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":[],"created_at":"2024-12-19T21:31:07.311Z","updated_at":"2026-04-30T15:32:13.065Z","avatar_url":"https://github.com/cesium.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ESLint + Prettier + Tailwind Config for Next.js\n\n\u003e Shareable config for [ESLint](https://eslint.org/), [Prettier](https://prettier.io/) and [Tailwind](https://tailwindcss.com/), aimed primarily to be used in NextJS projects.\n\n## Overview\n\nThis configuration extends some recommended ESLint config, Prettier and Tailwind integration via the ESLint [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) and [eslint-plugin-tailwindcss](https://github.com/francoismassart/eslint-plugin-tailwindcss). Additionally, a few default rules are overriden to provide a more relaxed development experience in Next.js applications out of the box.\n\nThe goal of this configuration is to get code linting and formatting up and running as quickly as possible in a modern development environment, without sacrificing cleanliness and readability, and having to configure ESLint + Prettier from scratch every time.\n\n## Installation\n\nTo install the package, run:\n\n```shell\nnpm install --save-dev @cesiuminho/eslint-config\n```\n\nThis will install the shared config\n\n- [eslint](https://github.com/eslint/eslint)\n- [prettier](https://github.com/prettier/prettier)\n- [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react)\n- [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/main/packages/eslint-plugin-react-hooks)\n- [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier)\n- [eslint-plugin-tailwindcss](https://github.com/francoismassart/eslint-plugin-tailwindcss)\n- [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import)\n- [eslint-plugin-unused-imports](https://github.com/sweepline/eslint-plugin-unused-imports)\n\n\n## Usage\n\nTo start using this shared config, add `@cesiuminho/eslint-config` to the `.eslintrc` file:\n\n```jsx\n// .eslintrc\n{\n  \"extends\": \"@cesiuminho/eslint-config/next\"\n}\n```\n\n## Prettier\n\nThis config supports Prettier integration out of the box. Rules that may conflict with ESLint are disabled via recommended configuration in [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier).\n\nIf you wish to override any [Prettier options](https://prettier.io/docs/en/options.html), you can do so by specifying them under `prettier/prettier` rule in your ESLint config file. For example:\n\n```jsx\n// .eslintrc\n{\n  \"extends\": \"@cesiuminho/eslint-config/next\",\n  \"rules\": {\n    \"prettier/prettier\": [\n      \"error\",\n      {\n        \"semi\": false\n      }\n    ]\n  }\n}\n```\n\nMake sure that these rules match the options specified in your `.prettierrc` file.\n\n## Adding Scripts\n\nAdd the following to your `package.json` file to define a script that will lint all known files and output the results:\n\n```jsx\n// package.json\n{\n  \"scripts\": {\n    \"lint\": \"next lint\"\n  }\n}\n```\n\nTo fix all automatically-fixable issues, you can add the following script to your `package.json` as well (in addition to above):\n\n```jsx\n// package.json\n{\n  \"scripts\": {\n    \"lint:fix\": \"next lint --fix\"\n  }\n}\n```\n\nNote that you can update the above scripts as you see fit, this is just an example. See ESLint [CLI reference](https://eslint.org/docs/user-guide/command-line-interface) for more details.\n\n## Author\n\n[CeSIUM](https://github.com/cesium)\n\n## License\n\n[MIT](https://choosealicense.com/licenses/mit/)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcesium%2Feslint-config-cesium","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcesium%2Feslint-config-cesium","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcesium%2Feslint-config-cesium/lists"}