We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56b36ba commit 6458690Copy full SHA for 6458690
2 files changed
.markdownlint.json
@@ -0,0 +1,4 @@
1
+{
2
+ "MD013": false,
3
+ "MD041": false
4
+}
extensions/ql-vscode/.markdownlint-cli2.cjs
@@ -1,7 +1,12 @@
-const options = require('@github/markdownlint-github').init({
- "MD013": false, // Line length
- "MD041": false, // First line in file should be a top level heading
-})
+// Having the base options in a top-level config file means
+// that the extension can pick them up too, since that only
+// considers _this_ file when looking at files in this directory
+// or below.
5
+base_options = require('../../.markdownlint.json')
6
+
7
+const options = require('@github/markdownlint-github').init(
8
+ base_options
9
+)
10
module.exports = {
11
config: options,
12
customRules: ["@github/markdownlint-github"],
0 commit comments