Shareable MarkdownLint config for the fluid project.
npm install markdownlint-config-fluid


Shareable markdownlint configuration for the Fluid Project.
To use the markdownlint configuration provided by this module, add it as a dev dependency to your project:
``bash`
npm install markdownlint-config-fluid --save-dev --save-exact
If you are using markdownlint-cli, you can pass this configuration
to the CLI directly:
`bash`
markdownlint --config=node_modules/markdownlint-config-fluid/index.js
If you are using markdownlint-cli2, you can create a
.markdownlintrc.js file with the following contents:
`js
"use strict";
module.exports = require("markdownlint-config-fluid");
`
If you are using Grunt and grunt-markdownlint, you can load the
JSON configuration into Grunt as follows:
`js`
grunt.initConfig({
markdownlint: {
options: {
config: grunt.file.readJSON("./node_modules/markdownlint-config-fluid/.markdownlintrc.json")
}
}
});
See the markdownlint documentation for full details
on available rules.
To modify the markdownlint rules provided by this module, update the configuration in the
.markdownlintrc.json file. See the markdownlint
documentation for configuration options.
To test your changes locally, link the package globally on your system.
`bash`Run from the markdownlint-config-fluid directory.
Depending on your system, you may need to use sudo.
npm link
Add your linked module to the package you want to test in.
`bash`Run in the root directory for the package with which you want to test the configuration.
npm link markdownlint-config-fluid
Remove the links to clean up the test settings.
`bashRun from the markdownlint-config-fluid directory.
Depending on your system, you may need to use sudo.
npm unlink
$3
This package uses Conventional Commits, enforced with
commitlint. This facilitates releasing new versions of the package via Release Please.
To cut a release, merge the current release pull request.
This will tag an appropriate semantic version based on the nature of the recent commits to the
project and update the changelog.
You will then need to publish the updated version to the npm registry. This requires an npm account
with appropriate maintainer permissions. To publish the package, run:
`bash
npm publish
``For more information on publishing to npm, see the npm publish documentation.