@labeg/code-style 2.0.67 → 2.0.69

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.
Files changed (2) hide show
  1. package/.eslintrc.js +3 -1
  2. package/package.json +6 -6
package/.eslintrc.js CHANGED
@@ -69,6 +69,8 @@ module.exports = {
69
69
  "@typescript-eslint/no-confusing-void-expression": "off", // more nice
70
70
  "@typescript-eslint/member-ordering": "off", // need correct priority
71
71
 
72
- "@typescript-eslint/keyword-spacing": "off" // bug, remove later
72
+ "@typescript-eslint/keyword-spacing": "off", // bug, remove later
73
+ "@typescript-eslint/no-import-type-side-effects": "off", // bug, remove later
74
+ "no-duplicate-imports": "off" // bug, remove later
73
75
  }
74
76
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@labeg/code-style",
3
- "version": "2.0.67",
3
+ "version": "2.0.69",
4
4
  "scripts": {
5
5
  "prepublishOnly": "npm version patch"
6
6
  },
@@ -15,13 +15,13 @@
15
15
  },
16
16
  "homepage": "https://github.com/LabEG/code-style#readme",
17
17
  "dependencies": {
18
- "@typescript-eslint/eslint-plugin": "^5.51.0",
19
- "@typescript-eslint/parser": "^5.51.0",
20
- "eslint": "^8.33.0",
18
+ "@typescript-eslint/eslint-plugin": "^5.60.0",
19
+ "@typescript-eslint/parser": "^5.60.0",
20
+ "eslint": "^8.43.0",
21
21
  "eslint-plugin-jsx-a11y": "^6.7.1",
22
22
  "eslint-plugin-react": "^7.32.2",
23
23
  "eslint-plugin-react-hooks": "^4.6.0",
24
- "stylelint": "^14.16.1",
25
- "stylelint-config-standard": "^29.0.0"
24
+ "stylelint": "^15.9.0",
25
+ "stylelint-config-standard": "^33.0.0"
26
26
  }
27
27
  }