New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

remark-lint-table-cell-padding

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

remark-lint-table-cell-padding

remark-lint rule to warn when table cells are incorrectly padded

1.0.4
Source
npm
Version published
Maintainers
1
Created
Source

remark-lint-table-cell-padding

Build Coverage Downloads Size Sponsors Backers Chat

Warn when table cells are incorrectly padded.

Options: 'consistent', 'padded', or 'compact', default: 'consistent'.

'consistent' detects the first used cell padding style and warns when subsequent cells use different styles.

Fix

remark-stringify formats tables with padding by default. Pass spacedTable: false to not use padding.

See Using remark to fix your Markdown on how to automatically fix warnings for this rule.

Presets

This rule is included in the following presets:

PresetSetting
remark-preset-lint-consistent'consistent'
remark-preset-lint-markdown-style-guide'padded'

Example

valid.md

When configured with 'padded'.

In
| A     | B     |
| ----- | ----- |
| Alpha | Bravo |
Out

No messages.

invalid.md

When configured with 'padded'.

In
| A    |    B |
| :----|----: |
| Alpha|Bravo |

| C      |    D |
| :----- | ---: |
|Charlie | Delta|

Too much padding isn’t good either:

| E     | F        |   G    |      H |
| :---- | -------- | :----: | -----: |
| Echo  | Foxtrot  |  Golf  |  Hotel |
Out
3:8: Cell should be padded
3:9: Cell should be padded
7:2: Cell should be padded
7:17: Cell should be padded
13:23: Cell should be padded with 1 space, not 2
13:32: Cell should be padded with 1 space, not 2
empty.md

When configured with 'padded'.

In
<!-- Empty cells are OK, but those surrounding them may not be. -->

|        | Alpha | Bravo|
| ------ | ----- | ---: |
| Charlie|       |  Echo|
Out
3:25: Cell should be padded
5:10: Cell should be padded
5:25: Cell should be padded
missing-body.md

When configured with 'padded'.

In
<!-- Missing cells are fine as well. -->

| Alpha | Bravo    | Charlie |
| ----- | -------- | ------- |
| Delta |
| Echo  | Foxtrott |
Out

No messages.

valid.md

When configured with 'compact'.

In
|A    |B    |
|-----|-----|
|Alpha|Bravo|
Out

No messages.

invalid.md

When configured with 'compact'.

In
|   A    | B    |
|   -----| -----|
|   Alpha| Bravo|

|C      |     D|
|:------|-----:|
|Charlie|Delta |
Out
3:5: Cell should be compact
3:12: Cell should be compact
7:15: Cell should be compact
valid-padded.md

When configured with 'consistent'.

In
| A     | B     |
| ----- | ----- |
| Alpha | Bravo |

| C       | D     |
| ------- | ----- |
| Charlie | Delta |
Out

No messages.

invalid-padded.md

When configured with 'consistent'.

In
| A     | B     |
| ----- | ----- |
| Alpha | Bravo |

| C      |     D |
| :----- | ----: |
|Charlie | Delta |
Out
7:2: Cell should be padded
valid-compact.md

When configured with 'consistent'.

In
|A    |B    |
|-----|-----|
|Alpha|Bravo|

|C      |D    |
|-------|-----|
|Charlie|Delta|
Out

No messages.

invalid-compact.md

When configured with 'consistent'.

In
|A    |B    |
|-----|-----|
|Alpha|Bravo|

|C      |     D|
|:------|-----:|
|Charlie|Delta |
Out
7:15: Cell should be compact
invalid.md

When configured with 'invalid'.

Out
1:1: Invalid table-cell-padding style `invalid`

Install

npm:

npm install remark-lint-table-cell-padding

Use

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

 ...
 "remarkConfig": {
   "plugins": [
     ...
     "lint",
+    "lint-table-cell-padding",
     ...
   ]
 }
 ...

Or use it on the CLI directly

remark -u lint -u lint-table-cell-padding 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-table-cell-padding'))
   .process('_Emphasis_ and **importance**', function (err, file) {
     console.error(report(err || file));
   });

Contribute

See contributing.md in remarkjs/.github for ways to get started. See support.md for ways to get help.

This project has a Code of Conduct. By interacting with this repository, organisation, or community you agree to abide by its terms.

License

MIT © Titus Wormer

Keywords

remark

FAQs

Package last updated on 20 Jun 2019

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