3.0.3 • Published 2 years ago

textlint-plugin-ruby v3.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

textlint-plugin-ruby

Ruby plugin for textlint

Install

Install with npm:

$ npm install --dev textlint-plugin-ruby

Install textlint-ruby with gem:

# requires >= 2.0.0
$ gem install textlint-ruby

Usage

Put following config to .textlintrc

{
  "plugins": {
    "ruby": true
  }
}

Options

  • extensions: string[]
    • Additional file extensions for markdown
  • execCommand: string[]
    • Default ["textlint-ruby", "--stdio"]
    • Set textlint-ruby executable command

For example, if you want to treat custom extensions as ruby, put following config to .textlintrc

{
  "plugins": {
    "ruby": {
      "extensions": [".rbx"]
    }
  }
}

For example, if you want to set specific textlint-ruby executable path, put following config to .textlintrc

# Use gem installed with Gemfile.
{
  "plugins": {
    "ruby": {
      "execCommand": ["bundle", "exec", "textlint-ruby", "--stdio"]
    }
  }
}
3.0.3

2 years ago

3.0.2

2 years ago

3.0.1

2 years ago

3.0.0

2 years ago

2.0.0

2 years ago

1.0.0

2 years ago