{"id":13485196,"url":"https://github.com/mightyiam/eslint-config-love","last_synced_at":"2026-02-12T04:59:59.664Z","repository":{"id":37390802,"uuid":"104987926","full_name":"mightyiam/eslint-config-love","owner":"mightyiam","description":"A TypeScript ESLint config that loves you","archived":false,"fork":false,"pushed_at":"2026-02-12T02:42:01.000Z","size":4197,"stargazers_count":814,"open_issues_count":6,"forks_count":68,"subscribers_count":4,"default_branch":"master","last_synced_at":"2026-02-12T04:02:06.008Z","etag":null,"topics":["eslint","hacktoberfest","javascript","typescript"],"latest_commit_sha":null,"homepage":"","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/mightyiam.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"mightyiam","custom":"https://wise.com/pay/me/shaharo"}},"created_at":"2017-09-27T07:42:29.000Z","updated_at":"2026-02-12T03:56:46.000Z","dependencies_parsed_at":"2023-12-18T22:08:58.075Z","dependency_job_id":"1e1ec52b-c5f0-4736-aa51-c4a0d6e1226e","html_url":"https://github.com/mightyiam/eslint-config-love","commit_stats":{"total_commits":1583,"total_committers":32,"mean_commits":49.46875,"dds":0.459886291850916,"last_synced_commit":"a81cf5d4953ca5bdfc77742730772139a93bcebb"},"previous_names":["standard/eslint-config-standard-with-typescript","mightyiam/eslint-config-love","mightyiam/eslint-config-standard-with-typescript"],"tags_count":187,"template":false,"template_full_name":null,"purl":"pkg:github/mightyiam/eslint-config-love","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mightyiam%2Feslint-config-love","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mightyiam%2Feslint-config-love/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mightyiam%2Feslint-config-love/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mightyiam%2Feslint-config-love/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mightyiam","download_url":"https://codeload.github.com/mightyiam/eslint-config-love/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mightyiam%2Feslint-config-love/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29359360,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T01:03:07.613Z","status":"online","status_checked_at":"2026-02-12T02:00:06.911Z","response_time":55,"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":["eslint","hacktoberfest","javascript","typescript"],"created_at":"2024-07-31T17:01:50.247Z","updated_at":"2026-02-12T04:59:59.659Z","avatar_url":"https://github.com/mightyiam.png","language":"TypeScript","funding_links":["https://github.com/sponsors/mightyiam","https://wise.com/pay/me/shaharo"],"categories":["TypeScript"],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"./logo.svg\" width=\"150\"/\u003e\n  \u003ch1\u003eeslint-config-love\u003c/h1\u003e\n\n![GitHub License](https://img.shields.io/github/license/mightyiam/eslint-config-love)\n[![npm](https://img.shields.io/npm/v/eslint-config-love)](https://www.npmjs.com/package/eslint-config-love)\n![Dependent repos prior to rename](https://img.shields.io/librariesio/dependent-repos/npm/eslint-config-standard-with-typescript?label=\"dependent%20repos%20prior%20to%20rename\")\n![Dependent repos](https://img.shields.io/librariesio/dependent-repos/npm/eslint-config-love)\n![GitHub Repo stars](https://img.shields.io/github/stars/mightyiam/eslint-config-love)\n\n_A TypeScript ESLint config that loves you_\n\n\u003c/div\u003e\n\n## Description\n\nThis is an [ESLint shareable configuration](https://eslint.org/docs/latest/use/core-concepts#shareable-configurations).\n\n- Safety at the cost of verbosity\n- Convention over arbitrary choice\n- No formatting rules (please use a formatter)\n- No rules that are covered by strict TypeScript\n- No library/framework/syntactic-extension-specific rules\n\n## Versioning\n\nAny change that might require a user to make changes beyond upgrading this package is considered major.\nFor example, rule addition are obviously major.\nIt is expected that most version bumps will be major.\n\n## Example config\n\nHere are example [ESLint configuration files](https://eslint.org/docs/latest/use/configure/configuration-files).\n\nECMAScript Modules:\n\n```js\nimport love from 'eslint-config-love'\n\nexport default [\n  {\n    ...love,\n    files: ['**/*.js', '**/*.ts'],\n  },\n]\n```\n\nCommonJS:\n\n```js\nmodule.exports = (async function config() {\n  const { default: love } = await import('eslint-config-love')\n\n  return [\n    {\n      ...love,\n      files: ['**/*.js', '**/*.ts'],\n    },\n  ]\n})()\n```\n\n[Learn how to configure ESLint](https://eslint.org/docs/latest/use/configure/).\n\nNote: the config exported by this package sets `languageOptions.parserOptions.project = true`.\nRead about the `project` option [here](https://typescript-eslint.io/packages/parser/#project).\n\nThere are [some more `parserOptions`](https://typescript-eslint.io/packages/parser/#configuration) you may care about.\n\n## Example command line usage:\n\n```\n$ npx eslint .\n```\n\n## Disabling rules\n\nAs with any ESLint configuration, some ad-hoc [disabling of rules](https://eslint.org/docs/latest/use/configure/rules#disabling-rules) is expected.\nIt is further expected that the strict nature of this configuration would more frequently require the disabling of rules.\n\nConsider minimizing the scope in which rules are disabled;\nprefer using `eslint-disable-*` comments when possible.\nOtherwise, rules can be disabled for a subset of files using configuration.\n\n## Contributing\n\nThis project is developed primarily in remote mob programming format.\n[See schedule and how to apply here](https://mobusoperandi.com/mobs/love.html).\n\nOtherwise, see [`CONTRIBUTING.md`](./CONTRIBUTING.md).\n\n## Sponsoring\n\nTo ensure the continuity of this project, consider [sponsoring the author](https://github.com/sponsors/mightyiam).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmightyiam%2Feslint-config-love","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmightyiam%2Feslint-config-love","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmightyiam%2Feslint-config-love/lists"}