eslint-plugin-smarthr 0.5.10 → 0.5.11

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
@@ -2,6 +2,14 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.5.11](https://github.com/kufu/eslint-plugin-smarthr/compare/v0.5.9...v0.5.11) (2024-06-06)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * <FormControl> 内に三項演算子がある場合に、入力要素が複数あると誤認されないようにする ([#139](https://github.com/kufu/eslint-plugin-smarthr/issues/139)) ([8a234c7](https://github.com/kufu/eslint-plugin-smarthr/commit/8a234c73e140725ff1926d4d23f64c263e46d5d6))
11
+ * 適切にonClick属性を利用しているケースを通したい! ([cc71417](https://github.com/kufu/eslint-plugin-smarthr/commit/cc7141768f222f45ffbff1aa1dadec1fcfb83dd2))
12
+
5
13
  ### [0.5.10](https://github.com/kufu/eslint-plugin-smarthr/compare/v0.5.9...v0.5.10) (2024-04-26)
6
14
 
7
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-smarthr",
3
- "version": "0.5.10",
3
+ "version": "0.5.11",
4
4
  "author": "SmartHR",
5
5
  "license": "MIT",
6
6
  "description": "A sharable ESLint plugin for SmartHR",
@@ -31,6 +31,7 @@ const EXPECTED_NAMES = {
31
31
  'Pagination$': 'Pagination$',
32
32
  'SideNav$': 'SideNav$',
33
33
  'AccordionPanel$': 'AccordionPanel$',
34
+ 'FilterDropdown$': 'FilterDropdown$',
34
35
  }
35
36
 
36
37
  const UNEXPECTED_NAMES = {
package/tsconfig.json DELETED
@@ -1,12 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "strict": true,
4
- "allowJs": true,
5
- "checkJs": true,
6
- "noEmit": true,
7
- "target": "ESNext",
8
- "module": "CommonJS",
9
- "lib": ["ESNext"],
10
- "noImplicitAny": true
11
- },
12
- }
package/types.js DELETED
@@ -1,3 +0,0 @@
1
- /**
2
- * @typedef {import('@typescript-eslint/utils').TSESTree.JSXOpeningElement} JSXOpeningElement
3
- */