{"id":15725281,"url":"https://github.com/isuke/vscode-advanced-poe-filter","last_synced_at":"2026-04-30T01:39:00.147Z","repository":{"id":80570678,"uuid":"181848305","full_name":"isuke/vscode-advanced-poe-filter","owner":"isuke","description":"VS Code Advanced Poe Filter Language Support","archived":false,"fork":false,"pushed_at":"2024-01-14T11:17:44.000Z","size":342,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-31T01:27:32.906Z","etag":null,"topics":["filter-of-kalandra","path-of-exile","pathofexile","vscode-extension"],"latest_commit_sha":null,"homepage":"https://marketplace.visualstudio.com/items?itemName=isuke.vscode-advanced-poe-filter","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/isuke.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2019-04-17T08:22:06.000Z","updated_at":"2024-01-08T14:52:46.000Z","dependencies_parsed_at":null,"dependency_job_id":"629cb3b5-170d-4021-890c-c37b13b5260b","html_url":"https://github.com/isuke/vscode-advanced-poe-filter","commit_stats":null,"previous_names":[],"tags_count":17,"template":false,"template_full_name":null,"purl":"pkg:github/isuke/vscode-advanced-poe-filter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isuke%2Fvscode-advanced-poe-filter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isuke%2Fvscode-advanced-poe-filter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isuke%2Fvscode-advanced-poe-filter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isuke%2Fvscode-advanced-poe-filter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/isuke","download_url":"https://codeload.github.com/isuke/vscode-advanced-poe-filter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isuke%2Fvscode-advanced-poe-filter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32451481,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T22:27:22.272Z","status":"ssl_error","status_checked_at":"2026-04-29T22:10:49.234Z","response_time":110,"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":["filter-of-kalandra","path-of-exile","pathofexile","vscode-extension"],"created_at":"2024-10-03T22:20:19.402Z","updated_at":"2026-04-30T01:39:00.132Z","avatar_url":"https://github.com/isuke.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Advanced PoE Filter [VS Code](https://code.visualstudio.com/) Extension\n\n[![license](https://img.shields.io/github/license/mashape/apistatus.svg)](https://raw.githubusercontent.com/isuke/vscode-advanced-poe-filter/master/LICENSE) [![git-consistent friendly](https://img.shields.io/badge/git--consistent-friendly-brightgreen.svg)](https://github.com/isuke/git-consistent) ![github actions status](https://github.com/isuke/vscode-advanced-poe-filter/actions/workflows/lint.yml/badge.svg)\n\nThis [VS Code](https://code.visualstudio.com/) extension provides support for Advanced PoE Filter.\n\nAdvanced PoE Filter is used by [Filter of Kalarandra](https://filter-of-kalandra.netlify.com/).\n\n## Features\n\n### Syntax Highlighting\n\n![Syntax Highlighting](./images/syntax-highlight.png)\n\n### Outline\n\n![Outline](./images/outline.png)\n\n### Snippets\n\n- Show Block\n- Hide Block\n- Unset Block\n- Ignore Block\n- Fork Branch\n- Mixin Branch\n- Var Macro\n- Prop Macro\n\n## Recommended Setting\n\nAdd the following to your `setting.json`.\n\n```json\n  \"[advancedpoefilter]\": {\n    \"editor.tabSize\": 4,\n  },\n  \"editor.tokenColorCustomizations\": {\n    \"textMateRules\": [\n      {\n        \"scope\": \"markup.deleted.advancedpoefilter\",\n        \"settings\": { \"fontStyle\": \"strikethrough\" }\n      },\n      {\n        \"scope\": \"invalid.deprecated\",\n        \"settings\": { \"fontStyle\": \"strikethrough\" }\n      },\n      {\n        \"scope\": \"keyword.other.macro.advancedpoefilter\",\n        \"settings\": { \"fontStyle\": \"underline\" }\n      },\n      {\n        \"scope\": \"keyword.other.function.advancedpoefilter\",\n        \"settings\": { \"fontStyle\": \"underline\" }\n      },\n      {\n        \"scope\": \"keyword.control.activity.advancedpoefilter\",\n        \"settings\": { \"foreground\": \"#6699cc\" }\n      },\n      {\n        \"scope\": \"keyword.control.branch.advancedpoefilter\",\n        \"settings\": { \"foreground\": \"#9999cc\" }\n      },\n      {\n        \"scope\": \"keyword.control.condition.advancedpoefilter\",\n        \"settings\": { \"foreground\": \"#66cccc\" }\n      },\n      {\n        \"scope\": \"keyword.control.action.text.advancedpoefilter\",\n        \"settings\": { \"foreground\": \"#cc99cc\" }\n      },\n      {\n        \"scope\": \"keyword.control.action.effect.advancedpoefilter\",\n        \"settings\": { \"foreground\": \"#ffcc66\" }\n      }\n    ]\n  },\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fisuke%2Fvscode-advanced-poe-filter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fisuke%2Fvscode-advanced-poe-filter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fisuke%2Fvscode-advanced-poe-filter/lists"}