@deephaven/eslint-config 0.70.1-beta.6 → 0.71.1-beta.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,14 @@
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.71.0](https://github.com/deephaven/web-client-ui/compare/v0.70.0...v0.71.0) (2024-03-28)
7
+
8
+ **Note:** Version bump only for package @deephaven/eslint-config
9
+
10
+
11
+
12
+
13
+
6
14
  # [0.70.0](https://github.com/deephaven/web-client-ui/compare/v0.69.1...v0.70.0) (2024-03-22)
7
15
 
8
16
  **Note:** Version bump only for package @deephaven/eslint-config
package/index.js CHANGED
@@ -54,6 +54,13 @@ module.exports = {
54
54
  'react/require-default-props': 'off',
55
55
  'react/jsx-no-bind': 'off',
56
56
  'react-refresh/only-export-components': 'warn',
57
+ camelcase: [
58
+ 'error',
59
+ {
60
+ allow: ['^UNSAFE_'], // allow UNSAFE_styles UNSAFE_className
61
+ properties: 'never', // restore airbnb default, just setting allow overrides it
62
+ },
63
+ ],
57
64
  },
58
65
  parserOptions: {
59
66
  ecmaFeatures: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deephaven/eslint-config",
3
- "version": "0.70.1-beta.6+bfbf7b12",
3
+ "version": "0.71.1-beta.0+a03fa079",
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": "bfbf7b128f0be0a82c7dd33e9023ff7df3f480fc"
29
+ "gitHead": "a03fa0796e8a5a665d0badbd8380995567b0d6dc"
30
30
  }