{"id":15350847,"url":"https://github.com/junichi11/netbeans-textlint-plugin","last_synced_at":"2026-03-16T22:33:32.467Z","repository":{"id":39962269,"uuid":"104471711","full_name":"junichi11/netbeans-textlint-plugin","owner":"junichi11","description":"Support for textlint.","archived":false,"fork":false,"pushed_at":"2022-05-20T20:45:54.000Z","size":99,"stargazers_count":6,"open_issues_count":4,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-28T11:42:52.507Z","etag":null,"topics":["netbeans","netbeans-plugin","textlint"],"latest_commit_sha":null,"homepage":"http://plugins.netbeans.org/plugin/73031/textlint-support","language":"Java","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/junichi11.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":"junichi11"}},"created_at":"2017-09-22T12:25:34.000Z","updated_at":"2023-04-30T10:31:11.000Z","dependencies_parsed_at":"2022-09-02T03:41:12.120Z","dependency_job_id":null,"html_url":"https://github.com/junichi11/netbeans-textlint-plugin","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junichi11%2Fnetbeans-textlint-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junichi11%2Fnetbeans-textlint-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junichi11%2Fnetbeans-textlint-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junichi11%2Fnetbeans-textlint-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/junichi11","download_url":"https://codeload.github.com/junichi11/netbeans-textlint-plugin/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248980942,"owners_count":21193142,"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","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":["netbeans","netbeans-plugin","textlint"],"created_at":"2024-10-01T11:59:28.707Z","updated_at":"2026-03-16T22:33:32.442Z","avatar_url":"https://github.com/junichi11.png","language":"Java","funding_links":["https://github.com/sponsors/junichi11"],"categories":[],"sub_categories":[],"readme":"## NetBeans textlint Plugin\n\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![Build Status](https://travis-ci.org/junichi11/netbeans-textlint-plugin.svg?branch=master)](https://travis-ci.org/junichi11/netbeans-textlint-plugin)\n\nThis plugin provides support for textlint.\n\n![annotations](screenshots/nb-textlint-annotations.png)\n\n### Donation\n\n- https://github.com/sponsors/junichi11\n\n### What's the textlint?\n\nSee https://github.com/textlint/textlint\n\n### Downloads\n\n- https://github.com/junichi11/netbeans-textlint-plugin/releases\n- http://plugins.netbeans.org/plugin/73031/textlint-support\n\n### Usage\n\n#### Install textlint and rules\n\nOf course, it assumes that nodejs and npm are installed.\n\ne.g.\n\n```\n$ mkdir txtlint\n$ cd txtlint\n$ npm init\n$ npm install textlint --save-dev\n$ npm install textlint-rule-max-ten textlint-rule-spellcheck-tech-word textlint-rule-no-mix-dearu-desumasu --save-dev\n```\n\n#### Create .textlintrc\n\n```\n$ touch .textlintrc\n```\n\n```json\n{\n  \"rules\": {\n    \"max-ten\": {\n      \"max\": 3\n    },\n    \"spellcheck-tech-word\": true,\n    \"no-mix-dearu-desumasu\": true\n  }\n}\n```\n\nYou can also set parameters to Options (see below).\n\n#### Set textlint and .textlintrc paths\n\nSet paths to the Options (see below).\n\ne.g.\n\n- textlint Path: /path/to/txtlint/node_modules/.bin/textlint (textlint.cmd in Windows)\n- .textlintrc Path: /path/to/textlint/.textlintrc\n\n#### Open Action Items window\n\n- Click Window \u003e Action Items.\n- Click \"Show action items for currently edited file only\" icon.\n- Open your markdown or text file.\n\n![action items window](screenshots/nb-textlint-action-items-window.png)\n\n### Options\n\nTools \u003e Options \u003e Editor \u003e textlint\n\n- textlint Path: Absolute path to textlint\n- .textlintrc Path: Absolute path to .textlintrc\n- Options : You can set options for the textlint command\n- Enable in HTML files: To use the html plugin, you can check this\n- Refresh on Save: To scan the document on save, you can check this (Checked by default)\n- Show Annotations: To show annotations in the glyph gutter, you can check this (Checked by default)\n\n### Actions\n\n#### Fix\n\nYou have to save your file before you run this action.\nIf there is a fixable rule's error, you can fix it. Right-click an item \u003e Click `Fix`.\nTo refresh items, your document is saved once.\n\n#### Fix All\n\nYou have to save your file before you run this action.\nIf there are fixable rule's errors, you can fix them. Right-click an item \u003e Click `Fix All`.\nThis action runs `textlint --fix`command.\n\n#### Refresh\n\nYou can refresh results forcibly by the following action: Right-click your editor \u003e Click `textlint Refresh`.\nYou can also set the shortcut key(Tools \u003e Options \u003e Keymap).\n\n### Icons\n\n- ![normal errors](screenshots/textlint_icon_16.png): Normal errors\n- ![fixable errors](screenshots/textlint_fixable_icon_16.png): Fixable errors\n\n### Color \u0026 Effect\n\nSee Tools \u003e Options \u003e Fonts \u0026 Colors \u003e Annotations \u003e com-junichi11-netbeans-modules-textlint-*\n\n### NOTE\n\n- The plugin scans only current file.\n- The plugin does not refresh results automatically. Please save your file or run the refresh action.\n- Use `UTF-8` as file encoding and `LF` as line endings.\n- This plugin may not work properly in Windows. (Please try to check above.)\n- If you cannot get expected results, just try to run the `textlint` commands once in your CLI.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjunichi11%2Fnetbeans-textlint-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjunichi11%2Fnetbeans-textlint-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjunichi11%2Fnetbeans-textlint-plugin/lists"}