{"id":43269122,"url":"https://github.com/deadem/notepad-pp-linter","last_synced_at":"2026-02-01T15:39:08.146Z","repository":{"id":56061854,"uuid":"54700362","full_name":"deadem/notepad-pp-linter","owner":"deadem","description":"Notepad++ Linter. Realtime code check against any checkstyle-compatible linter: jshint, eslint, jscs, phpcs, csslint etc","archived":false,"fork":false,"pushed_at":"2024-02-05T17:01:20.000Z","size":722,"stargazers_count":33,"open_issues_count":5,"forks_count":6,"subscribers_count":5,"default_branch":"master","last_synced_at":"2024-02-05T18:25:16.951Z","etag":null,"topics":["linter","notepad","notepad-linter","notepad-plugin","notepad-plus-plus","notepad-plusplus-plugin","notepadplusplus","syntax-checker","syntax-highlighting"],"latest_commit_sha":null,"homepage":"","language":"C++","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/deadem.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}},"created_at":"2016-03-25T06:45:12.000Z","updated_at":"2024-02-05T18:25:19.250Z","dependencies_parsed_at":"2024-02-05T18:25:18.875Z","dependency_job_id":"cd28c1d7-5c27-48f8-9eca-0f8db515de1a","html_url":"https://github.com/deadem/notepad-pp-linter","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/deadem/notepad-pp-linter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deadem%2Fnotepad-pp-linter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deadem%2Fnotepad-pp-linter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deadem%2Fnotepad-pp-linter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deadem%2Fnotepad-pp-linter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/deadem","download_url":"https://codeload.github.com/deadem/notepad-pp-linter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deadem%2Fnotepad-pp-linter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28981347,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-01T15:35:50.179Z","status":"ssl_error","status_checked_at":"2026-02-01T15:35:38.075Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["linter","notepad","notepad-linter","notepad-plugin","notepad-plus-plus","notepad-plusplus-plugin","notepadplusplus","syntax-checker","syntax-highlighting"],"created_at":"2026-02-01T15:39:07.420Z","updated_at":"2026-02-01T15:39:08.138Z","avatar_url":"https://github.com/deadem.png","language":"C++","readme":"# Notepad++ Linter\n\nA Notepad++ plugin that allows realtime code check against any checkstyle-compatible linter: jshint, eslint, jscs, phpcs, csslint etc.\n\n![](/img/1.jpg?raw=true)\n\n## Installation\n\n - Copy bin/linter.dll to your Notepad++ plugins directory\n - Plugins -\u003e Linter -\u003e Edit config\n - Restart Notepad++\n\n## Config example\n\n```xml\n\u003c?xml version=\"1.0\" encoding=\"utf-8\" ?\u003e\n\u003cNotepadPlus\u003e\n  \u003clinter extension=\".js\" command=\"C:\\Users\\deadem\\AppData\\Roaming\\npm\\jscs.cmd --reporter=checkstyle\"/\u003e\n  \u003clinter extension=\".js\" command=\"C:\\Users\\deadem\\AppData\\Roaming\\npm\\jshint.cmd --reporter=checkstyle\"/\u003e\n  \u003clinter extension=\".js\" command=\"C:\\Users\\deadem\\AppData\\Roaming\\npm\\eslint.cmd --format checkstyle\"/\u003e\n  \u003clinter extension=\".js\" command=\"\u0026quot;C:\\Path with spaces\\somelint.cmd\u0026quot; --format checkstyle\"/\u003e\n  \u003clinter extension=\".php\" command=\"C:\\Path_to\\phpcs --report=checkstyle\"/\u003e\n\u003c/NotepadPlus\u003e\n```\n\nOptional attribute `stdin`=\"1\" can be used to lint from stdin instead of temp file. i.e: \n```xml\n  \u003clinter stdin=\"1\" extension=\".js\" command=\"C:\\Users\\deadem\\AppData\\Roaming\\npm\\eslint.cmd --stdin --format checkstyle\"/\u003e\n```\n\nTo handle spaces in names, you should use the \u0026quot; quote character, as follows:\n\n```xml\n  \u003clinter extension=\".none\" command=\"\u0026quot;C:\\a command with spaces\\thing\u0026quot; --stuff\" /\u003e\n```\n\nOptional parameter \n\nYou can change default colors by an optional \"style\" tag. \"color\" attribute is a RGB hex color value, \"alpha\" value can range from 0 (completely transparent) to 255 (no transparency).\n\n```xml\n\u003cNotepadPlus\u003e\n  \u003cstyle color=\"0000FF\" alpha=\"100\" /\u003e\n...\n\u003c/NotepadPlus\u003e\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeadem%2Fnotepad-pp-linter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeadem%2Fnotepad-pp-linter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeadem%2Fnotepad-pp-linter/lists"}