Skip to content

ThaneshR/awesome-lint

 
 

Repository files navigation


awesome-lint


Linter for Awesome lists

Build Status Gitter

Intended to make it easier to create and maintain Awesome lists.

Includes a bunch of general Markdown rules and some Awesome specific rules.

CLI

Install

$ npm install --global awesome-lint

Usage

$ awesome-lint

   1:1-1:18       error    Missing Awesome badge after the main heading              awesome-badge
  7:1-7:161       error    Don’t use emphasis to introduce a section, use a heading  no-emphasis-as-heading
  475:82-475:105  error    Don’t use literal URLs without angle brackets             no-literal-urls

Tip

Add it as a test script in package.json and activate Travis CI to lint on new commits and pull requests.

package.json
{
  "scripts": {
    "test": "awesome-lint"
  },
  "devDependencies": {
    "awesome-lint": "*"
  }
}
.travis.yml
language: node_js
node_js:
  - 'node'

API

Install

$ npm install --save awesome-lint

Usage

const awesomeLint = require('awesome-lint');

awesomeLint.report();

Docs

awesomeLint()

Returns a Promise for a VFile.

awesomeLint.report()

Show the lint output.

License

MIT © Sindre Sorhus

About

Linter for Awesome lists

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%