comment-variables 0.14.4 → 0.14.6
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/README.md +1 -1
- package/library/_commons/utilities/flows.js +1 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ npm install -g comment-variables
|
|
|
6
6
|
|
|
7
7
|
## Commands
|
|
8
8
|
|
|
9
|
-
**`comment-variables` (
|
|
9
|
+
**`comment-variables` (aliases `jscomments`, `comvar`) comes with three commands in this initial release:**
|
|
10
10
|
|
|
11
11
|
```
|
|
12
12
|
comment-variables
|
|
@@ -38,10 +38,10 @@ const coreCommentsFlow = async (
|
|
|
38
38
|
fix: true,
|
|
39
39
|
errorOnUnmatchedPattern: false,
|
|
40
40
|
overrideConfigFile: true,
|
|
41
|
+
ignorePatterns: ignores,
|
|
41
42
|
overrideConfig: [
|
|
42
43
|
{
|
|
43
44
|
files: allJSTSFileGlobs,
|
|
44
|
-
ignores,
|
|
45
45
|
languageOptions: typeScriptAndJSXCompatible,
|
|
46
46
|
plugins: {
|
|
47
47
|
[commentVariablesPluginName]: {
|
|
@@ -59,13 +59,11 @@ const coreCommentsFlow = async (
|
|
|
59
59
|
},
|
|
60
60
|
{
|
|
61
61
|
files: allMDFileGlobs,
|
|
62
|
-
ignores,
|
|
63
62
|
plugins: { markdown },
|
|
64
63
|
processor: "markdown/markdown",
|
|
65
64
|
},
|
|
66
65
|
{
|
|
67
66
|
files: allMDVirtualJSTSFileGlobs,
|
|
68
|
-
ignores,
|
|
69
67
|
languageOptions: typeScriptAndJSXCompatible,
|
|
70
68
|
rules: {
|
|
71
69
|
[`${commentVariablesPluginName}/${ruleName}`]: "warn",
|
package/package.json
CHANGED