flatlint 5.7.0 → 5.7.1
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
CHANGED
package/lib/compare/values.js
CHANGED
|
@@ -105,8 +105,8 @@ export const match = () => ({
|
|
|
105
105
|
|
|
106
106
|
export const replace = () => ({
|
|
107
107
|
'__x __a,': '__x __a;',
|
|
108
|
-
'__x __a = __expr,': '__x __a = __expr;',
|
|
109
108
|
'__a(__args),': '__a(__args);',
|
|
109
|
+
'__x __a = __expr,': '__x __a = __expr;',
|
|
110
110
|
'return __expr,': 'return __expr;',
|
|
111
111
|
'__a.__b = __expr,': '__a.__b = __expr;',
|
|
112
112
|
'"__a",': '"__a";',
|
package/lib/types/types.js
CHANGED