Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

remark-lint-linebreak-style

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

remark-lint-linebreak-style

remark-lint rule to warn when linebreaks violate a given or detected style

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
39K
increased by9.48%
Maintainers
1
Weekly downloads
 
Created
Source

remark-lint-linebreak-style

Warn when linebreaks violate a given or detected style.

Options: either 'unix' (for \n, denoted as ), 'windows' (for \r\n, denoted as ␍␊), or 'consistent' (to detect the first used linebreak in a file). Default: 'consistent'.

Presets

This rule is not included in any default preset

Example

valid-consistent-as-windows.md
In

Note: ␍␊ represents a carriage return and a line feed.

Alpha␍␊
Bravo␍␊
Out

No messages.

valid-consistent-as-unix.md
In

Note: represents a line feed.

Alpha␊
Bravo␊
Out

No messages.

invalid-unix.md

When configured with 'unix'.

In

Note: ␍␊ represents a carriage return and a line feed.

Alpha␍␊
Out
1:7: Expected linebreaks to be unix (`\n`), not windows (`\r\n`)
invalid-windows.md

When configured with 'windows'.

In

Note: represents a line feed.

Alpha␊
Out
1:6: Expected linebreaks to be windows (`\r\n`), not unix (`\n`)

Install

npm install remark-lint-linebreak-style

Usage

You probably want to use it on the CLI through a config file:

 ...
 "remarkConfig": {
   "plugins": [
     ...
     "lint",
+    "lint-linebreak-style",
     ...
   ]
 }
 ...

Or use it on the CLI directly

remark -u lint -u lint-linebreak-style readme.md

Or use this on the API:

 var remark = require('remark');
 var report = require('vfile-reporter');

 remark()
   .use(require('remark-lint'))
+  .use(require('remark-lint-linebreak-style'))
   .process('_Emphasis_ and **importance**', function (err, file) {
     console.error(report(err || file));
   });

License

MIT © Titus Wormer

Keywords

FAQs

Package last updated on 17 Aug 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc