Skip to content

Commit

Permalink
linting ✨
Browse files Browse the repository at this point in the history
  • Loading branch information
rusackas committed Apr 14, 2020
1 parent eeebcff commit 81a07a1
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@
import React from 'react';
import PropTypes from 'prop-types';
import { FormGroup, FormControl } from 'react-bootstrap';
import { legacyValidateNumber, legacyValidateInteger } from '@superset-ui/validator';
import {
legacyValidateNumber,
legacyValidateInteger,
} from '@superset-ui/validator';
import ControlHeader from '../ControlHeader';

const propTypes = {
Expand Down
5 changes: 4 additions & 1 deletion superset-frontend/src/explore/controlPanels/DeckArc.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@
* under the License.
*/
import { t } from '@superset-ui/translation';
import { validateNonEmpty, legacyValidateInteger } from '@superset-ui/validator';
import {
validateNonEmpty,
legacyValidateInteger,
} from '@superset-ui/validator';
import timeGrainSqlaAnimationOverrides from './timeGrainSqlaAnimationOverrides';
import { columnChoices, PRIMARY_COLOR } from '../controls';
import { formatSelectOptions } from '../../modules/utils';
Expand Down
5 changes: 4 additions & 1 deletion superset-frontend/src/explore/controlPanels/DeckGeojson.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@
* under the License.
*/
import { t } from '@superset-ui/translation';
import { validateNonEmpty, legacyValidateInteger } from '@superset-ui/validator';
import {
validateNonEmpty,
legacyValidateInteger,
} from '@superset-ui/validator';
import { formatSelectOptions } from '../../modules/utils';
import { columnChoices } from '../controls';
import {
Expand Down
5 changes: 4 additions & 1 deletion superset-frontend/src/explore/controls.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,10 @@ import {
getCategoricalSchemeRegistry,
getSequentialSchemeRegistry,
} from '@superset-ui/color';
import { legacyValidateInteger, validateNonEmpty } from '@superset-ui/validator';
import {
legacyValidateInteger,
validateNonEmpty,
} from '@superset-ui/validator';

import {
formatSelectOptionsForRange,
Expand Down

0 comments on commit 81a07a1

Please sign in to comment.