@dubium/eslint-config 1.0.7 → 1.0.8

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/config/base.js CHANGED
@@ -398,7 +398,7 @@ export const base = {
398
398
  * Requires atomic updates of asynchronous variables
399
399
  * Ссылка: https://eslint.org/docs/latest/rules/require-atomic-updates
400
400
  */
401
- "require-atomic-updates": error,
401
+ "require-atomic-updates": "error",
402
402
 
403
403
  /**
404
404
  * Требует использования метода isNaN() для проверки на NaN
package/package.json CHANGED
@@ -1,10 +1,9 @@
1
1
  {
2
2
  "name": "@dubium/eslint-config",
3
3
  "private": false,
4
- "version": "1.0.7",
4
+ "version": "1.0.8",
5
5
  "type": "module",
6
6
  "exports": {
7
- ".": "./config/index.js",
8
7
  "./base": "./config/base.js",
9
8
  "./react": "./config/react.js",
10
9
  "./jsx-a11y": "./config/jsx-a11y.js",
package/config/index.js DELETED
@@ -1,4 +0,0 @@
1
- export { base } from "./base.js";
2
- export { react } from "./react.js";
3
- export { jsxA11y } from "./jsx-a11y";
4
- export { typescript } from "./typescript.js";