Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"@typescript-eslint/parser": "1.13.0",
"@zendeskgarden/css-bedrock": "7.0.28",
"@zendeskgarden/css-variables": "6.3.7",
"@zendeskgarden/eslint-config": "8.0.0",
"@zendeskgarden/eslint-config": "9.0.0",
"@zendeskgarden/stylelint-config": "10.0.0",
"@zendeskgarden/svg-icons": "5.3.1",
"babel-core": "7.0.0-bridge.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/autocomplete/src/elements/Multiselect.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const StyledInput = styled(Input)`
}

${props =>
props.selectedValues.length !== 0 && // eslint-disable-line
props.selectedValues.length !== 0 &&
(!props.isFocused || props.tagFocusedKey !== undefined) &&
!props.isOpen &&
!props.placeholder &&
Expand Down
2 changes: 1 addition & 1 deletion packages/buttons/src/elements/ButtonGroup.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export default class ButtonGroup extends ControlledComponent {
};

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

return (
Expand Down
2 changes: 1 addition & 1 deletion packages/checkboxes/src/elements/Checkbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default class Checkbox extends ControlledComponent {
getHintProps,
keyboardFocused
} = {}) => {
const { children, wrapperProps, id, ...checkboxInputProps } = this.props; // eslint-disable-line no-unused-vars
const { children, wrapperProps, id, ...checkboxInputProps } = this.props;

/**
* Due to us applying keyboard-only focus events to 2 separate elements (the input and label)
Expand Down
1 change: 0 additions & 1 deletion packages/dropdowns/src/Fields/Label.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable react/prop-types */
/**
* Copyright Zendesk, Inc.
*
Expand Down
1 change: 0 additions & 1 deletion packages/loaders/src/Skeleton.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ const skeletonRtlAnimation = keyframes`
}
`;

/* eslint-disable */
const StyledSkeleton = styled.div.attrs({
'data-garden-id': COMPONENT_ID,
'data-garden-version': PACKAGE_VERSION
Expand Down
2 changes: 1 addition & 1 deletion packages/radios/src/elements/Radio.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default class Radio extends ControlledComponent {
getHintProps,
keyboardFocused
} = {}) => {
const { children, wrapperProps, id, ...checkboxInputProps } = this.props; // eslint-disable-line no-unused-vars
const { children, wrapperProps, id, ...checkboxInputProps } = this.props;

/**
* Due to us applying keyboard-only focus events to 2 separate elements (the input and label)
Expand Down
2 changes: 1 addition & 1 deletion packages/select/src/elements/Select.js
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export default class Select extends ControlledComponent {
eventsEnabled,
popperModifiers,
children,
onChange, // eslint-disable-line no-unused-vars
onChange,
small,
selectRef,
disabled: selectDisabled,
Expand Down
1 change: 0 additions & 1 deletion packages/tables/src/views/Table.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ const SIZE = {
LARGE: 'large'
};

/* eslint-disable indent */
const retrieveSrollableStyling = props => {
if (!props.scrollable) {
return '';
Expand Down
2 changes: 1 addition & 1 deletion packages/tabs/src/elements/Tabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export default class Tabs extends ControlledComponent {
}

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

return cloneElement(
child,
Expand Down
2 changes: 1 addition & 1 deletion packages/toggles/src/elements/Toggle.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default class Toggle extends ControlledComponent {
getHintProps,
keyboardFocused
} = {}) => {
const { children, wrapperProps, id, ...checkboxInputProps } = this.props; // eslint-disable-line no-unused-vars
const { children, wrapperProps, id, ...checkboxInputProps } = this.props;

/**
* Due to us applying keyboard-only focus events to 2 separate elements (the input and label)
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2729,10 +2729,10 @@
resolved "https://registry.yarnpkg.com/@zendeskgarden/css-variables/-/css-variables-6.3.7.tgz#63c3955d28811b525c8f5e80912e883eeff0d82c"
integrity sha512-YDDRpdUTaGLN5jfBvMOR5AMXhA36+CQ5bb9lJG90FvH00uxIqh5Q4KgD1M7bdALcPhbMq24wAp9ITy/1LJtnDw==

"@zendeskgarden/eslint-config@8.0.0":
version "8.0.0"
resolved "https://registry.yarnpkg.com/@zendeskgarden/eslint-config/-/eslint-config-8.0.0.tgz#e81d09d511c79dbecef02a0a6442ca32f7caaf68"
integrity sha512-ASutc2nGI364sTsef5f5M45+MFTw+n/guF1RmPtL5BIEGKdmnIlXG7NI3d4iSVotp/3+QGDlTe83B+cabv795Q==
"@zendeskgarden/eslint-config@9.0.0":
version "9.0.0"
resolved "https://registry.yarnpkg.com/@zendeskgarden/eslint-config/-/eslint-config-9.0.0.tgz#f506b86d2b53dc860a58a7f0d8b6303b2858cfbb"
integrity sha512-8u3ZD/cvnkWKXHTTOuNI8RFSJMolAlfORJ5fxzCLXRWQc0pNKzEEUENnScNSsufXysOWQiiY6DY7d9jH/vgmRg==

"@zendeskgarden/[email protected]":
version "10.0.0"
Expand Down