@deephaven/eslint-config 0.91.1-webpack-fix.0 → 0.92.0

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
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
+ ## [0.92.0](https://github.com/deephaven/web-client-ui/compare/v0.91.0...v0.92.0) (2024-09-03)
7
+
8
+ ### Features
9
+
10
+ - Make rollup group behaviour a setting in the global settings menu ([#2183](https://github.com/deephaven/web-client-ui/issues/2183)) ([bc8d5f2](https://github.com/deephaven/web-client-ui/commit/bc8d5f24ac7f883c0f9d65ba47901f83f996e95c)), closes [#2128](https://github.com/deephaven/web-client-ui/issues/2128)
11
+
6
12
  ## [0.91.0](https://github.com/deephaven/web-client-ui/compare/v0.90.0...v0.91.0) (2024-08-23)
7
13
 
8
14
  **Note:** Version bump only for package @deephaven/eslint-config
package/index.js CHANGED
@@ -20,6 +20,12 @@ module.exports = {
20
20
  'react/jsx-uses-react': 'error',
21
21
  'react/jsx-uses-vars': 'error',
22
22
  'react/jsx-filename-extension': [1, { extensions: ['.jsx', '.tsx'] }],
23
+ 'react-hooks/exhaustive-deps': [
24
+ 'warn',
25
+ {
26
+ additionalHooks: '(useOnChange)',
27
+ },
28
+ ],
23
29
  'react/react-in-jsx-scope': 'off',
24
30
  'react/sort-comp': [
25
31
  2,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deephaven/eslint-config",
3
- "version": "0.91.1-webpack-fix.0+424a5cee",
3
+ "version": "0.92.0",
4
4
  "description": "Deephaven ESLint configuration",
5
5
  "repository": {
6
6
  "type": "git",
@@ -26,5 +26,5 @@
26
26
  "publishConfig": {
27
27
  "access": "public"
28
28
  },
29
- "gitHead": "424a5cee7f15f49438cc83ac5c7cff0630d3104b"
29
+ "gitHead": "0994c522bcda37eb79e3a6bf2f3ac63f680a49c5"
30
30
  }