eslint-plugin-smarthr
Advanced tools
Comparing version 0.2.18 to 0.2.19
@@ -5,2 +5,9 @@ # Changelog | ||
### [0.2.19](https://github.com/kufu/eslint-plugin-smarthr/compare/v0.2.18...v0.2.19) (2023-01-17) | ||
### Features | ||
* a11y-input-has-name-attributeの対象となるコンポーネントを追加(InputFile, CheckBox, ComboBox, DatePicker) ([ed14952](https://github.com/kufu/eslint-plugin-smarthr/commit/ed14952996902e9d2e4c7deb7b5107e7a57b41d6)) | ||
### [0.2.18](https://github.com/kufu/eslint-plugin-smarthr/compare/v0.2.17...v0.2.18) (2023-01-15) | ||
@@ -7,0 +14,0 @@ |
{ | ||
"name": "eslint-plugin-smarthr", | ||
"version": "0.2.18", | ||
"version": "0.2.19", | ||
"author": "SmartHR", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
const { generateTagFormatter } = require('../../libs/format_styled_components'); | ||
const EXPECTED_NAMES = { | ||
'RadioButton$': 'RadioButton$', | ||
'(i|I)nput$': 'Input$', | ||
'(t|T)extarea$': 'Textarea$', | ||
'(s|S)elect$': 'Select$', | ||
'InputFile$': 'InputFile$', | ||
'RadioButton$': 'RadioButton$', | ||
'Check(b|B)ox$': 'CheckBox$', | ||
'Combo(b|B)ox$': 'ComboBox$', | ||
'DatePicker$': 'DatePicker$', | ||
} | ||
@@ -9,0 +13,0 @@ const TARGET_TAG_NAME_REGEX = new RegExp(`(${Object.keys(EXPECTED_NAMES).join('|')})`) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
162685
3304