Skip to content

Commit

Permalink
[eslint-config-universe] Add import ordering alphabetization (expo#7038)
Browse files Browse the repository at this point in the history
  • Loading branch information
wschurman committed Feb 14, 2020
1 parent f6dcc0d commit 6a918cd
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion build/Camera.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/CameraModule/CameraModule.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/CameraModule/CameraModule.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/CameraModule/CameraUtils.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/CameraModule/CameraUtils.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/ExponentCamera.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/ExponentCameraManager.web.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/Camera.tsx
Expand Up @@ -3,6 +3,7 @@ import mapValues from 'lodash/mapValues';
import PropTypes from 'prop-types';
import React from 'react';
import { findNodeHandle, Platform, ViewPropTypes } from 'react-native';

import {
CapturedPicture,
NativeProps,
Expand Down
2 changes: 1 addition & 1 deletion src/CameraModule/CameraModule.ts
Expand Up @@ -5,8 +5,8 @@ import { PictureOptions } from '../Camera.types';
import { CameraType, CapturedPicture, CaptureOptions, ImageType } from './CameraModule.types';
import * as Utils from './CameraUtils';
import * as CapabilityUtils from './CapabilityUtils';
import { FacingModeToCameraType, PictureSizes } from './constants';
import { isBackCameraAvailableAsync, isFrontCameraAvailableAsync } from './UserMediaManager';
import { FacingModeToCameraType, PictureSizes } from './constants';

export { ImageType, CameraType, CaptureOptions };

Expand Down
2 changes: 1 addition & 1 deletion src/CameraModule/CameraUtils.ts
Expand Up @@ -3,8 +3,8 @@ import invariant from 'invariant';

import { PictureOptions } from './../Camera.types';
import { CameraType, CaptureOptions, ImageSize, ImageType } from './CameraModule.types';
import { CameraTypeToFacingMode, ImageTypeFormat, MinimumConstraints } from './constants';
import { requestUserMediaAsync } from './UserMediaManager';
import { CameraTypeToFacingMode, ImageTypeFormat, MinimumConstraints } from './constants';

interface ConstrainLongRange {
max?: number;
Expand Down
1 change: 1 addition & 0 deletions src/ExponentCamera.ts
@@ -1,5 +1,6 @@
import { requireNativeViewManager } from '@unimodules/core';
import * as React from 'react';

import { NativeProps } from './Camera.types';

const ExponentCamera: React.ComponentType<NativeProps> = requireNativeViewManager('ExponentCamera');
Expand Down
2 changes: 1 addition & 1 deletion src/ExponentCameraManager.web.ts
@@ -1,6 +1,6 @@
import { CapturedPicture, PictureOptions } from './Camera.types';
import ExponentCamera from './ExponentCamera.web';
import { canGetUserMedia } from './CameraModule/UserMediaManager';
import ExponentCamera from './ExponentCamera.web';

export default {
get name(): string {
Expand Down

0 comments on commit 6a918cd

Please sign in to comment.