All Projects → jonlabelle → SublimeLinter-contrib-markdownlint

jonlabelle / SublimeLinter-contrib-markdownlint

Licence: MIT license
A Sublime Text Linter for Markdown/CommonMark files.

Programming Languages

shell
77523 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to SublimeLinter-contrib-markdownlint

Sublimelinter
The code linting framework for Sublime Text 3
Stars: ✭ 1,920 (+6520.69%)
Mutual labels:  linter, sublime-text, sublimelinter
Wsl Proxy
WSL proxy files for editor/linux interop
Stars: ✭ 134 (+362.07%)
Mutual labels:  linter, sublime-text
sublime-monokai-free
A beautiful, modern, high quality, Monokai theme for Sublime Text 3.
Stars: ✭ 46 (+58.62%)
Mutual labels:  sublime-text, sublimelinter
Sublime Phpcs
🔍 PHP CodeSniffer, PHP Coding Standard Fixer, Linter and Mess Detector Support for Sublime Text
Stars: ✭ 805 (+2675.86%)
Mutual labels:  linter, sublime-text
Golite
Add essential language support for the Go language to Sublime Text 3.
Stars: ✭ 14 (-51.72%)
Mutual labels:  linter, sublime-text
sublime-PICO-8
PICO-8 plugin for the Sublime Text 3 editor.
Stars: ✭ 42 (+44.83%)
Mutual labels:  sublime-text
SublimePapyrus
A Sublime Text 2 and 3 package for the Papyrus scripting language.
Stars: ✭ 44 (+51.72%)
Mutual labels:  linter
dotfiles
My personal dotfiles repository
Stars: ✭ 36 (+24.14%)
Mutual labels:  sublime-text
Bulma-Snippets-Sublime-Text-Plugin
Bulma Snippets Sublime Text Plugin
Stars: ✭ 13 (-55.17%)
Mutual labels:  sublime-text
hyperlink
Very fast link checker for CI.
Stars: ✭ 85 (+193.1%)
Mutual labels:  linter
alfred-sublime-text
Filter and open your Sublime Text (2 and 3) project files from Alfred.
Stars: ✭ 66 (+127.59%)
Mutual labels:  sublime-text
rubocop-linter-action
Rubocop Linter Action: A GitHub Action to run Rubocop against your code!
Stars: ✭ 86 (+196.55%)
Mutual labels:  linter
elm-review
Analyzes Elm projects, to help find mistakes before your users find them.
Stars: ✭ 195 (+572.41%)
Mutual labels:  linter
ITE
An Integrated Toolset Environment over the Sublime Text editor aiming to develop on any programming language.
Stars: ✭ 31 (+6.9%)
Mutual labels:  sublime-text
rocketnative-sublime-snippets
[DEPRECATED] Rocketseat React Native snippets for Sublime Text Editor
Stars: ✭ 16 (-44.83%)
Mutual labels:  sublime-text
lint-sass-vue
Atom linter for Vue.js
Stars: ✭ 19 (-34.48%)
Mutual labels:  linter
constyble
CSS complexity linter
Stars: ✭ 92 (+217.24%)
Mutual labels:  linter
eaf-linter
🤪 A linter, prettier, and test suite that does everything as-simple-as-possible.
Stars: ✭ 17 (-41.38%)
Mutual labels:  linter
sublime-text-2-wpseek
wpseek.com WordPress Developer Assistant for Sublime Text 2 / 3
Stars: ✭ 19 (-34.48%)
Mutual labels:  sublime-text
unindent
Report code that is unnecessarily indented
Stars: ✭ 18 (-37.93%)
Mutual labels:  linter

Sublime Text Markdownlint

build status Package Control Installs Latest Version MIT License

A Sublime Text plug-in for linting Markdown/CommonMark files.

Markdownlint Screenshot

Installing

SublimeLinter must be installed in order to use this plug-in. If SublimeLinter is not installed, please follow the instructions outlined here.

Install Markdownlint

Before using this plug-in, you must ensure that markdownlint is installed on your system. To install markdownlint, do the following:

  1. Install Node.js.
  2. Install markdownlint by typing the following in a terminal:
    npm install -g markdownlint-cli
  1. If you are using nvm and zsh, ensure that the line to load nvm is in .zshenv and not .zshrc.
  2. If you are using zsh and oh-my-zsh, do not load the nvm plug-in for oh-my-zsh.

Install Sublime Text Markdownlint

Please use Package Control to install Sublime Text Markdownlint. This will ensure that the plug-in will be updated when new versions are available. If you want to install from source so you can modify the source code, you probably know what you are doing so we won't cover that here.

To install via Package Control, do the following:

  1. Within Sublime Text, bring up the Command Palette and type install. Among the commands you should see Package Control: Install Package. If that command is not highlighted, use the keyboard or mouse to select it. There will be a pause of a few seconds while Package Control fetches the list of available plug-ins.

  2. When the plug-in list appears, type markdownlint. Among the entries you should see SublimeLinter-contrib-markdownlint. If that entry is not highlighted, use the keyboard or mouse to select it.

Markdownlint Configuration Files

Markdownlint configuration files (.markdownlintrc) are resolved first by checking the source directory of file being linted, then by checking the user $HOME path.

To specify a custom Markdownlint configuration path, create a markdownlint section under linters in your SublimeLinter User Settings (SublimeLinter.sublime-settings). Then add an args key with the appropriate path to your --config file. For example:

{
    "linters": {
        "markdownlint": {
            "args": ["--config", "/custom/path/to/.markdownlintrc"]
        }
    }
}

Contributing

If you would like to contribute enhancements or fixes, please do the following:

  1. Fork the plug-in repository.
  2. Hack on a separate topic branch created from the latest master.
  3. Commit and push the topic branch.
  4. Make a pull request.
  5. Be patient.

Please note that modifications should follow these coding guidelines:

  • Indent is 4 spaces.
  • Code should pass flake8 and pep257 linters.
  • Vertical whitespace helps readability, don't be afraid to use it.
  • Please use descriptive variable names, no abbreviations unless they are very well known.

Author

Jon LaBelle

License

MIT License

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].