Skip to content

Commit 40fc779

Browse files
renovate[bot]Austin Green
authored andcommitted
chore(deps): update dependency @zendeskgarden/eslint-config to v9 (#446)
1 parent 138b0c1 commit 40fc779

File tree

12 files changed

+12
-15
lines changed

12 files changed

+12
-15
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"@typescript-eslint/parser": "1.13.0",
4949
"@zendeskgarden/css-bedrock": "7.0.28",
5050
"@zendeskgarden/css-variables": "6.3.7",
51-
"@zendeskgarden/eslint-config": "8.0.0",
51+
"@zendeskgarden/eslint-config": "9.0.0",
5252
"@zendeskgarden/stylelint-config": "10.0.0",
5353
"@zendeskgarden/svg-icons": "5.3.1",
5454
"babel-core": "7.0.0-bridge.0",

packages/autocomplete/src/elements/Multiselect.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const StyledInput = styled(Input)`
4444
}
4545
4646
${props =>
47-
props.selectedValues.length !== 0 && // eslint-disable-line
47+
props.selectedValues.length !== 0 &&
4848
(!props.isFocused || props.tagFocusedKey !== undefined) &&
4949
!props.isOpen &&
5050
!props.placeholder &&

packages/buttons/src/elements/ButtonGroup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export default class ButtonGroup extends ControlledComponent {
9393
};
9494

9595
render() {
96-
const { children, ...otherProps } = this.props; // eslint-disable-line no-unused-vars
96+
const { children, ...otherProps } = this.props;
9797
const { focusedKey, selectedKey, id } = this.getControlledState();
9898

9999
return (

packages/checkboxes/src/elements/Checkbox.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export default class Checkbox extends ControlledComponent {
5252
getHintProps,
5353
keyboardFocused
5454
} = {}) => {
55-
const { children, wrapperProps, id, ...checkboxInputProps } = this.props; // eslint-disable-line no-unused-vars
55+
const { children, wrapperProps, id, ...checkboxInputProps } = this.props;
5656

5757
/**
5858
* Due to us applying keyboard-only focus events to 2 separate elements (the input and label)

packages/dropdowns/src/Fields/Label.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint-disable react/prop-types */
21
/**
32
* Copyright Zendesk, Inc.
43
*

packages/loaders/src/Skeleton.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ const skeletonRtlAnimation = keyframes`
4141
}
4242
`;
4343

44-
/* eslint-disable */
4544
const StyledSkeleton = styled.div.attrs({
4645
'data-garden-id': COMPONENT_ID,
4746
'data-garden-version': PACKAGE_VERSION

packages/radios/src/elements/Radio.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export default class Radio extends ControlledComponent {
5252
getHintProps,
5353
keyboardFocused
5454
} = {}) => {
55-
const { children, wrapperProps, id, ...checkboxInputProps } = this.props; // eslint-disable-line no-unused-vars
55+
const { children, wrapperProps, id, ...checkboxInputProps } = this.props;
5656

5757
/**
5858
* Due to us applying keyboard-only focus events to 2 separate elements (the input and label)

packages/select/src/elements/Select.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ export default class Select extends ControlledComponent {
203203
eventsEnabled,
204204
popperModifiers,
205205
children,
206-
onChange, // eslint-disable-line no-unused-vars
206+
onChange,
207207
small,
208208
selectRef,
209209
disabled: selectDisabled,

packages/tables/src/views/Table.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ const SIZE = {
2323
LARGE: 'large'
2424
};
2525

26-
/* eslint-disable indent */
2726
const retrieveSrollableStyling = props => {
2827
if (!props.scrollable) {
2928
return '';

packages/tabs/src/elements/Tabs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ export default class Tabs extends ControlledComponent {
119119
}
120120

121121
// Don't want to duplicate tabProps in the TabPanel
122-
const { tabProps, ...other } = child.props; // eslint-disable-line no-unused-vars
122+
const { tabProps, ...other } = child.props;
123123

124124
return cloneElement(
125125
child,

0 commit comments

Comments
 (0)