CommunitySolidServer/.github/.markdownlint-cli2.cjs
Joachim Van Herwegen 6248ed0938 refactor: Replace linting configurations
The previous package was outdated, preventing us from updating TS.
This one also lints YAML and JSON,
and applies many more rules to the test files,
explaining all the changes in this PR.
2023-11-02 09:49:17 +01:00

15 lines
257 B
JavaScript

'use strict';
const options = require('../.markdownlint-cli2.cjs');
module.exports = {
globs: [ '**/*.md' ],
config: {
// Re-use the base config
...options.config,
// Allow first line to not be top level heading
MD041: false,
},
};