putout 30.2.3 → 30.3.0
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/ChangeLog +7 -0
- package/lib/parse-options/index.js +1 -1
- package/package.json +1 -1
package/ChangeLog
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
2023.07.11, v30.3.0
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- 3df1f30b6 package: @typescript-eslint/eslint-plugin v6.0.0
|
|
5
|
+
- 92c747b33 putout: codemods: exclude files/directories started with "."
|
|
6
|
+
- f248abd67 package: @typescript-eslint/parser v6.0.0 (https://typescript-eslint.io/blog/announcing-typescript-eslint-v6/)
|
|
7
|
+
|
|
1
8
|
2023.07.10, v30.2.3
|
|
2
9
|
|
|
3
10
|
feature:
|
|
@@ -95,7 +95,7 @@ function _readOptions(name) {
|
|
|
95
95
|
return ['', {}];
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
const isInclude = (a) => !/(^not-rule-.*|^node_modules$)/.test(a);
|
|
98
|
+
const isInclude = (a) => a[0] !== '.' && !/(^not-rule-.*|^node_modules$)/.test(a);
|
|
99
99
|
|
|
100
100
|
function readRules(dirOpt, rulesDir) {
|
|
101
101
|
if (!rulesDir)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "30.
|
|
3
|
+
"version": "30.3.0",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
|
|
6
6
|
"description": "🐊 Pluggable and configurable code transformer with built-in ESLint, Babel and support of js, jsx, typescript, flow, markdown, yaml and json",
|