{"id":28269651,"url":"https://github.com/fimbullinter/circular","last_synced_at":"2025-08-12T18:12:20.840Z","repository":{"id":35047005,"uuid":"198982348","full_name":"fimbullinter/circular","owner":"fimbullinter","description":"Fimbullinter rules for Angular","archived":false,"fork":false,"pushed_at":"2023-01-07T05:34:31.000Z","size":70,"stargazers_count":0,"open_issues_count":10,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-08T16:38:47.752Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fimbullinter.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-07-26T08:52:56.000Z","updated_at":"2021-03-08T18:41:29.000Z","dependencies_parsed_at":"2023-01-15T12:42:40.811Z","dependency_job_id":null,"html_url":"https://github.com/fimbullinter/circular","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/fimbullinter/circular","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fimbullinter%2Fcircular","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fimbullinter%2Fcircular/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fimbullinter%2Fcircular/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fimbullinter%2Fcircular/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fimbullinter","download_url":"https://codeload.github.com/fimbullinter/circular/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fimbullinter%2Fcircular/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270109812,"owners_count":24528910,"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-12T02:00:09.011Z","response_time":80,"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":[],"created_at":"2025-05-20T15:15:09.354Z","updated_at":"2025-08-12T18:12:20.819Z","avatar_url":"https://github.com/fimbullinter.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# @fimbul/circular\n\nAngular integration of the [Fimbullinter project](https://github.com/fimbullinter/wotan).\n\n## Install\n\n```sh\nnpm install --save-dev @fimbul/circular\n# or\nyarn add -D @fimbul/circular\n```\n\n## Linting via Angular CLI\n\nIn your `angular.json`, under `projects / \u003cprojectName\u003e / architect / lint`, replace the existing TSLint builder as follows:\n\n```json\n\"lint\": {\n  \"builder\": \"@fimbul/circular:lint\",\n  \"options\": {\n  }\n}\n```\n\nIf you now run `ng lint [projectName]`, you are executing Fimbullinter instead of TSLint.\n\n`\"options\"` can be used to configure the linter using [configuration options of the `wotan` CLI](https://github.com/fimbullinter/wotan/blob/master/packages/wotan/README.md#cli-options). For example `wotan --cache --config wotan:recommended --fix` translates to the following `options` object:\n\n```json\n\"options\": {\n  \"cache\": true,\n  \"config\": \"wotan:recommended\",\n  \"fix\": true\n}\n```\n\nIf you do not explicitly configure the `project` option, it will automatically use the `tsConfig` options of that project's `build` and `test` targets.\n\n### Global default options for all projects\n\nIf you find yourself specifying the same options for all projects, consider creating a [`.fimbullinter.yaml`](https://github.com/fimbullinter/wotan/blob/master/packages/wotan/README.md#adding-cli-defaults-to-fimbullinteryaml). This file contains default options used for all projects and the `wotan` CLI (in case you want to use that too). You can still override specific configurations per project using `\"options\"` as described above.\n\n### Replacing TSLint\n\nAs you might know TSLint reached its end of life. Instead of jumping on the typescript-eslint hype-train, consider Fimbullinter as a replacement.\nSpoiler: Fimbullinter will eventually be able to execute ESLint rules, so you can tap into the vast ecosystem of existing rules while using a linter that is actually intended to work with TypeScript.\n\nThe [builtin rules](https://github.com/fimbullinter/wotan/blob/master/packages/mimir/README.md#rules) provide improved versions of TSLint rules as well as completely new and original ones.\n\nIf you still want to use TSLint rules to ease the transition, there are two possibilites:\n\n* [`@fimbul/valtyr`](https://github.com/fimbullinter/wotan/blob/master/packages/valtyr/README.md) provides full compatibility with TSLint and your existing `tslint.json` with almost no setup.\n* [`@fimbul/heimdall`](https://github.com/fimbullinter/wotan/blob/master/packages/heimdall/README.md) allows using TSLint rules and formatters within Fimbullinter, so you can still use the rules you know and love while getting all the benefits of Fimbullinter's builtin rules.\n\n## What's next?\n\nThis repository is intended to contain all sorts of Angular-related goodness for Fimbullinter. You can expect the addition of rules and configuration presets in the future.\n\n## License\n\nApache-2.0 © [Klaus Meinhardt](https://github.com/ajafff)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffimbullinter%2Fcircular","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffimbullinter%2Fcircular","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffimbullinter%2Fcircular/lists"}