@ivuorinen/markdownlint-config 0.3.7 → 0.3.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ivuorinen/markdownlint-config",
3
- "version": "0.3.7",
3
+ "version": "0.3.9",
4
4
  "type": "module",
5
5
  "description": "ivuorinen's shareable configuration for markdownlint.",
6
6
  "author": {
@@ -37,8 +37,8 @@
37
37
  "postinstall": "node scripts/postinstall.cjs"
38
38
  },
39
39
  "dependencies": {
40
- "@ivuorinen/config-checker": "^1.1.8",
40
+ "@ivuorinen/config-checker": "^1.1.9",
41
41
  "markdownlint-cli": "^0.43.0"
42
42
  },
43
- "gitHead": "006dc9b947c6c8033db3d31b01b0a1735a0c03f6"
43
+ "gitHead": "e9ed699b221ff96d3c5905b7d38ccebe9ba6ac14"
44
44
  }
@@ -1,9 +1,11 @@
1
1
  'use strict'
2
2
 
3
- const fs = require('fs')
4
- const path = require('path')
3
+ /* eslint no-console: "off", n/no-process-exit: "off", no-undefined: "off" -- CLI app that gives users feedback */
4
+
5
+ const fs = require('node:fs')
6
+ const path = require('node:path')
5
7
  // noinspection NpmUsedModulesInstalled
6
- const process = require('process')
8
+ const process = require('node:process')
7
9
  const checkConfig = require('@ivuorinen/config-checker')
8
10
  const foundConfig = checkConfig('markdownlint')
9
11