{"id":18035436,"url":"https://github.com/haasstefan/eslint-plugin-enforce-angular-signal-call","last_synced_at":"2025-10-06T22:59:49.797Z","repository":{"id":260159039,"uuid":"863154554","full_name":"HaasStefan/eslint-plugin-enforce-angular-signal-call","owner":"HaasStefan","description":"An eslint plugin that enforces Angular signals to be accessed via their getter","archived":false,"fork":false,"pushed_at":"2024-10-06T21:20:02.000Z","size":64,"stargazers_count":11,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-06T22:59:49.248Z","etag":null,"topics":["angular","angular-signals","eslint","typescript-eslint"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/HaasStefan.png","metadata":{"files":{"readme":"README.md","changelog":null,"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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-09-25T20:06:43.000Z","updated_at":"2024-10-22T13:03:27.000Z","dependencies_parsed_at":null,"dependency_job_id":"88cdf34d-fbf3-4caf-98c9-56d02cda0a02","html_url":"https://github.com/HaasStefan/eslint-plugin-enforce-angular-signal-call","commit_stats":null,"previous_names":["haasstefan/eslint-plugin-enforce-angular-signal-call"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/HaasStefan/eslint-plugin-enforce-angular-signal-call","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HaasStefan%2Feslint-plugin-enforce-angular-signal-call","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HaasStefan%2Feslint-plugin-enforce-angular-signal-call/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HaasStefan%2Feslint-plugin-enforce-angular-signal-call/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HaasStefan%2Feslint-plugin-enforce-angular-signal-call/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HaasStefan","download_url":"https://codeload.github.com/HaasStefan/eslint-plugin-enforce-angular-signal-call/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HaasStefan%2Feslint-plugin-enforce-angular-signal-call/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278692925,"owners_count":26029406,"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-10-06T02:00:05.630Z","response_time":65,"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":["angular","angular-signals","eslint","typescript-eslint"],"created_at":"2024-10-30T12:07:32.988Z","updated_at":"2025-10-06T22:59:49.790Z","avatar_url":"https://github.com/HaasStefan.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# `enforce-angular-signal-call`\n\nAn eslint plugin which enforces that Angular signals are called with the getter.\n\n## Rules \n\n\u003c!-- begin auto-generated rules list --\u003e\n\n| Name                                                                     | Description                                             |\n| :----------------------------------------------------------------------- | :------------------------------------------------------ |\n| [enforce-angular-signal-call](docs/rules/enforce-angular-signal-call.md) | Enforce that Angular signals are called with the getter |\n\n\u003c!-- end auto-generated rules list --\u003e\n\n\n## Example\n\n```ts\n\nconst mySignal = signal(false);\n\nconsole.log(mySignal); // ❌\n\nconsole.log(mySignal()); // ✅\n\nif (mySignal) { // ❌\n  console.log('mySignal is truthy');\n}\n\nif (mySignal()) { // ✅\n  console.log('mySignal() is truthy');\n}\n```\n\n\n## Installation\n\n```npm install --save-dev eslint-plugin-angular-signal-call```\n\n## Usage\n\nAdd `angular-signal-call` to the plugins section of your `.eslintrc` configuration file. You can omit the `eslint-plugin-` prefix:\n\n```json\n{\n    \"plugins\": [\n        \"enforce-angular-signal-call\"\n    ]\n}\n```\n\nThen configure the rules you want to use under the rules section.\n\n```json\n{\n    \"rules\": {\n        \"enforce-angular-signal-call/enforce-angular-signal-call\": \"warn\"\n    }\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhaasstefan%2Feslint-plugin-enforce-angular-signal-call","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhaasstefan%2Feslint-plugin-enforce-angular-signal-call","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhaasstefan%2Feslint-plugin-enforce-angular-signal-call/lists"}