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 def2198 commit 0d86812
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 16 deletions.
2 changes: 1 addition & 1 deletion build/AV.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/AV.js.map

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/Audio/Sound.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/Audio/Sound.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/ExpoVideoManager.web.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/ExponentVideo.web.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/Video.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/Video.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/AV.ts
@@ -1,5 +1,5 @@
import { Asset } from 'expo-asset';
import { Platform } from '@unimodules/core';
import { Asset } from 'expo-asset';

import ExponentAV from './ExponentAV';
// TODO add:
Expand Down
2 changes: 0 additions & 2 deletions src/Audio/Recording.ts
Expand Up @@ -6,10 +6,8 @@ import {
PlaybackStatus,
PlaybackStatusToSet,
} from '../AV';

import ExponentAV from '../ExponentAV';
import { isAudioEnabled, throwIfAudioIsDisabled } from './AudioAvailability';

import { Sound } from './Sound';

export type RecordingOptions = {
Expand Down
3 changes: 2 additions & 1 deletion src/Audio/Sound.ts
@@ -1,5 +1,5 @@
import { EventEmitter } from '@unimodules/core';
import { throwIfAudioIsDisabled } from './AudioAvailability';

import {
Playback,
PlaybackMixin,
Expand All @@ -12,6 +12,7 @@ import {
} from '../AV';
import { PitchCorrectionQuality } from '../Audio';
import ExponentAV from '../ExponentAV';
import { throwIfAudioIsDisabled } from './AudioAvailability';

type AudioInstance = number | HTMLMediaElement | null;
export class Sound implements Playback {
Expand Down
2 changes: 1 addition & 1 deletion src/ExpoVideoManager.web.ts
@@ -1,5 +1,5 @@
import ExponentAV from './ExponentAV';
import { PlaybackStatus } from './AV';
import ExponentAV from './ExponentAV';

export default {
get name(): string {
Expand Down
2 changes: 1 addition & 1 deletion src/ExponentVideo.web.tsx
@@ -1,8 +1,8 @@
import * as React from 'react';
import { View, createElement } from 'react-native';
import ExponentAV from './ExponentAV';

import { PlaybackNativeSource, PlaybackStatus, PlaybackStatusToSet } from './AV';
import ExponentAV from './ExponentAV';

type ExponentVideoProps = {
source: PlaybackNativeSource | null;
Expand Down
2 changes: 1 addition & 1 deletion src/Video.tsx
Expand Up @@ -22,9 +22,9 @@ import {
PlaybackStatus,
PlaybackStatusToSet,
} from './AV';
import ExpoVideoManager from './ExpoVideoManager';
import ExponentAV from './ExponentAV';
import ExponentVideo from './ExponentVideo';
import ExpoVideoManager from './ExpoVideoManager';
import {
ExponentVideoComponent,
FullscreenUpdateEvent,
Expand Down

0 comments on commit 0d86812

Please sign in to comment.