eslint-plugin-dsm-ally
Advanced tools
Comparing version 0.0.5 to 0.0.6
{ | ||
"name": "eslint-plugin-dsm-ally", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"description": "plugin with custom rules for DSM a11y", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -26,3 +26,3 @@ 'use strict'; | ||
if ( | ||
attribute.name === 'onClick' || | ||
(attribute.name && attribute.name.name === 'onClick') || | ||
(attribute.argument && attribute.argument.callee && attribute.argument.callee.name === 'getSelectionProps') | ||
@@ -32,3 +32,3 @@ ) { | ||
node: node.parent, | ||
message: `${node.name.name} with click handling needs to be converted to A11y${_.pascalCase(node.name.name)}` | ||
message: `${node.name.name} with click handling needs to be converted to A11y${_.upperFirst(node.name.name)}` | ||
}); | ||
@@ -35,0 +35,0 @@ } |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
5585
0