@ornikar/eslint-config-typescript-react 16.1.1 → 16.2.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [16.2.0](https://github.com/ornikar/eslint-configs/compare/v16.1.1...v16.2.0) (2021-12-09)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * downgrade node requirement [no issue] ([#204](https://github.com/ornikar/eslint-configs/issues/204)) ([a2ee3e0](https://github.com/ornikar/eslint-configs/commit/a2ee3e01d6a135520be4730581e540e6b33da5c9))
12
+
13
+
14
+ ### Features
15
+
16
+ * add stories-override [no issue] ([#202](https://github.com/ornikar/eslint-configs/issues/202)) ([a97cd3f](https://github.com/ornikar/eslint-configs/commit/a97cd3f1b55850aaa85fda3b238ef2dfa6bcafb6))
17
+
18
+
19
+
20
+
21
+
6
22
  ## [16.1.1](https://github.com/ornikar/eslint-configs/compare/v16.1.0...v16.1.1) (2021-12-08)
7
23
 
8
24
  **Note:** Version bump only for package @ornikar/eslint-config-typescript-react
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@ornikar/eslint-config-typescript-react",
3
- "version": "16.1.1",
3
+ "version": "16.2.0",
4
4
  "description": "eslint typescript react config files",
5
5
  "repository": "ornikar/eslint-configs",
6
6
  "main": "index.js",
7
7
  "license": "ISC",
8
8
  "engines": {
9
- "node": ">=14.17.6"
9
+ "node": ">=14.17.5"
10
10
  },
11
11
  "publishConfig": {
12
12
  "access": "public"
13
13
  },
14
14
  "dependencies": {
15
- "@ornikar/eslint-config-react": "^16.1.1",
16
- "@ornikar/eslint-config-typescript": "^16.1.0"
15
+ "@ornikar/eslint-config-react": "^16.2.0",
16
+ "@ornikar/eslint-config-typescript": "^16.2.0"
17
17
  },
18
18
  "peerDependencies": {
19
19
  "eslint": "^7.32.0",
@@ -25,5 +25,5 @@
25
25
  "react": "17.0.2",
26
26
  "type-fest": "2.8.0"
27
27
  },
28
- "gitHead": "0a494d30c7bf87ccd178404d6fd2f981f7f72009"
28
+ "gitHead": "02bf5db91f4847a3b3672c67012864ce7f28ac78"
29
29
  }
@@ -0,0 +1,11 @@
1
+ 'use strict';
2
+
3
+ module.exports = {
4
+ extends: ['@ornikar/eslint-config-react/stories-override'].map(require.resolve),
5
+ rules: {
6
+ /* In stories we don't need to be as strict as when we write source code */
7
+
8
+ // We don't need to explicitly return the type of a function or react component
9
+ '@typescript-eslint/explicit-function-return-type': 'off',
10
+ },
11
+ };