@10stars/config 6.1.0 → 6.1.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.
Files changed (2) hide show
  1. package/.eslintrc.js +2 -0
  2. package/package.json +1 -1
package/.eslintrc.js CHANGED
@@ -109,6 +109,8 @@ module.exports = {
109
109
  */
110
110
  "react/display-name": type.ignore,
111
111
  "react/no-children-prop": type.ignore,
112
+ /** 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 */
113
+ "react/no-unknown-property": [type.error, { ignore: [`css`] }],
112
114
  "react/prop-types": type.ignore,
113
115
  "react/react-in-jsx-scope": type.ignore,
114
116
  "react/jsx-filename-extension": [
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  },
6
6
  "name": "@10stars/config",
7
7
  "description": "10stars.dev Shareable Configs",
8
- "version": "6.1.0",
8
+ "version": "6.1.1",
9
9
  "author": "10stars.dev <web@alexandrov.co> (https://alexandrov.co)",
10
10
  "keywords": ["config"],
11
11
  "license": "MIT",