@10stars/config 11.3.0 → 11.4.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.
Files changed (2) hide show
  1. package/.eslintrc.js +8 -2
  2. package/package.json +3 -3
package/.eslintrc.js CHANGED
@@ -129,8 +129,14 @@ module.exports = {
129
129
  */
130
130
  "react/display-name": type.ignore,
131
131
  "react/no-children-prop": type.ignore,
132
- /** we ignore CSS, because we use Emotion @see https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/rules/no-unknown-property.md#rule-options */
133
- "react/no-unknown-property": [type.error, { ignore: [`css`] }],
132
+ "react/no-unknown-property": [
133
+ type.error /** @see https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/rules/no-unknown-property.md#rule-options */,
134
+ {
135
+ ignore: [
136
+ `sx`, // we ignore sx, because we use PigmentCSS @see https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/rules/no-unknown-property.md#rule-options
137
+ ],
138
+ },
139
+ ],
134
140
  "react/prop-types": type.ignore,
135
141
  "react/react-in-jsx-scope": type.ignore,
136
142
  "react/jsx-filename-extension": [
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public"
5
5
  },
6
6
  "name": "@10stars/config",
7
- "version": "11.3.0",
7
+ "version": "11.4.0",
8
8
  "author": "10stars.dev <web@alexandrov.co> (https://alexandrov.co)",
9
9
  "license": "MIT",
10
10
  "bin": {
@@ -33,7 +33,7 @@
33
33
  "@commitlint/cli": "^19.0.0",
34
34
  "@commitlint/config-conventional": "^19.0.0",
35
35
  "@types/lodash": "^4.0.0",
36
- "@types/node": "^20.0.0",
36
+ "@types/node": "^22.0.0",
37
37
  "@types/react": "^18.0.0",
38
38
  "@typescript-eslint/eslint-plugin": "^7.0.0",
39
39
  "@typescript-eslint/parser": "^7.0.0",
@@ -52,6 +52,6 @@
52
52
  "husky": "^9.0.0",
53
53
  "prettier": "^3.0.0",
54
54
  "type-fest": "^4.0.0",
55
- "typescript": "~5.5.2"
55
+ "typescript": "~5.5.4"
56
56
  }
57
57
  }