@arcticicestudio/remark-preset-lint

Arctic Ice Studio Markdown code style guide rules as an extensible remark-lint rule preset

Usage no npm install needed!

<script type="module">
  import arcticicestudioRemarkPresetLint from 'https://cdn.skypack.dev/@arcticicestudio/remark-preset-lint';
</script>

README

The Arctic Ice Studio Markdown code style guide rules as an extensible remark-lint rule preset.

This package implements the rules of the Arctic Ice Studio Markdown style guide as an extensible remark-lint rule preset. It supports all official core rules and various plugins like the “frontmatter” Markdown extension for YAML and TOML and “GitHub Flavoured” Markdown.

Getting Started

Note that this package uses npm version 7.7.0 or higher as the main package manager, but the documentations also include instructions to work with Yarn (classic / v1).

Installation

Add the package as development dependency to your project:

# With npm...
npm install --save-dev @arcticicestudio/remark-preset-lint

# or Yarn.
yarn add --dev @arcticicestudio/remark-preset-lint

Note that peer dependencies, like the remark-lint package itself, are only installed automatically when using a npm version equal or higher than 7.0.0, otherwise they must be installed separately like described in the peer dependencies section below. See the Node distribution index for more information about which npm version is bundled with which Node version.

Peer Dependencies

This package depends on various remark-lint rule packages that are defined as peer dependencies.

npm versions >=7.0.0

As of npm version 7.0.0, peer dependencies are installed automatically and does not require any additional steps.

npm versions >=5.0.0 <7.0.0

For npm version equal to or higher than 5.0.0 (pre-bundled with Node.js 8) but less than 7.0.0, all peer dependencies can be auto-installed using the pre-bundled npx package:

npx install-peerdeps --dev @arcticicestudio/remark-preset-lint
npm versions <5.0.0

If you’re using a npm version less than 5.0.0, the npx package is not pre-bundled, but users can either simply install the npx package globally to run the above command or use the install-peerdeps helper package locally/globally to let it handle the installation of all peer dependencies:

# Install and use the "install-peerdeps" helper package locally...
npm install install-peerdeps
./node_modules/.bin/install-peerdeps --dev @arcticicestudio/remark-preset-lint

# ...or globally.
npm install --global install-peerdeps
install-peerdeps --dev @arcticicestudio/remark-preset-lint

To install all peer dependencies manually without npx or any helper package, the npm info command can be used to get a list of all packages and their versions:

# List the names and versions of all peer dependencies...
npm info "@arcticicestudio/remark-preset-lint" peerDependencies

# ...and install each listed package manually.
npm install PACKAGE@VERSION
Using Yarn instead of npm

If you’re not using npm but Yarn, peer dependencies can be installed by either adding them manually or using the install-peerdeps helper package:

# Either add all packages manually by listing all required names and their versions and install them manually...
yarn info @arcticicestudio/remark-preset-lint peerDependencies
yarn add --dev remark-lint #...

# ...or use the "install-peerdeps" helper package.
yarn add --dev install-peerdeps
yarn run install-peerdeps --dev @arcticicestudio/remark-preset-lint

Usage

The package can be used as rule preset by adding it to the plugins within your .remarkrc.js or .remarkrc configuration file:

module.exports = {
  plugins: ["@arcticicestudio/remark-preset-lint"],
};

Contributing

Please read the contribution guidelines of the Arctic Ice Studio Markdown style guide for more details.

Copyright © 2018-present Arctic Ice Studio and Sven Greb