-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
@remotion/eslint-config
: Enable Prettier and ESLint for this package
- Loading branch information
1 parent
a10a670
commit 24f01ab
Showing
4 changed files
with
364 additions
and
335 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"extends": "@jonny", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,41 @@ | ||
export const autoImports = { | ||
useRef: "import {useRef} from 'react'", | ||
useEffect: "import {useEffect} from 'react'", | ||
useState: "import {useState} from 'react'", | ||
useCallback: "import {useCallback} from 'react'", | ||
useMemo: "import {useMemo} from 'react'", | ||
useReducer: "import {useReducer} from 'react'", | ||
useCurrentFrame: "import {useCurrentFrame} from 'remotion'", | ||
useVideoConfig: "import {useVideoConfig} from 'remotion'", | ||
spring: "import {spring} from 'remotion'", | ||
measureSpring: "import {measureSpring} from 'remotion'", | ||
random: "import {random} from 'remotion'", | ||
interpolate: "import {interpolate} from 'remotion'", | ||
interpolateColors: "import {interpolateColors} from 'remotion'", | ||
Easing: "import {Easing} from 'remotion'", | ||
getInputProps: "import {getInputProps} from 'remotion'", | ||
getStaticFiles: "import {getStaticFiles} from '@remotion/studio'", | ||
watchStaticFiles: "import {watchStaticFiles} from '@remotion/studio'", | ||
continueRender: "import {continueRender} from 'remotion'", | ||
delayRender: "import {delayRender} from 'remotion'", | ||
AbsoluteFill: "import {AbsoluteFill} from 'remotion'", | ||
Sequence: "import {Sequence} from 'remotion'", | ||
Composition: "import {Composition} from 'remotion'", | ||
Audio: "import {Audio} from 'remotion'", | ||
Video: "import {Video} from 'remotion'", | ||
OffthreadVideo: "import {OffthreadVideo} from 'remotion'", | ||
Series: "import {Series} from 'remotion'", | ||
Still: "import {Still} from 'remotion'", | ||
Freeze: "import {Freeze} from 'remotion'", | ||
Loop: "import {Loop} from 'remotion'", | ||
staticFile: "import {staticFile} from 'remotion'", | ||
Config: "import {Config} from '@remotion/cli/config'", | ||
Img: "import {Img} from 'remotion'", | ||
IFrame: "import {IFrame} from 'remotion'", | ||
Folder: "import {Folder} from 'remotion'", | ||
useCurrentScale: "import {useCurrentScale} from 'remotion'", | ||
VERSION: "import {VERSION} from 'remotion'", | ||
watchStaticFile: "import {watchStaticFile} from 'remotion'", | ||
z: "import {z} from 'zod'", | ||
styled: "import styled from 'styled-components'", | ||
useRef: "import {useRef} from 'react'", | ||
useEffect: "import {useEffect} from 'react'", | ||
useState: "import {useState} from 'react'", | ||
useCallback: "import {useCallback} from 'react'", | ||
useMemo: "import {useMemo} from 'react'", | ||
useReducer: "import {useReducer} from 'react'", | ||
useCurrentFrame: "import {useCurrentFrame} from 'remotion'", | ||
useVideoConfig: "import {useVideoConfig} from 'remotion'", | ||
spring: "import {spring} from 'remotion'", | ||
measureSpring: "import {measureSpring} from 'remotion'", | ||
random: "import {random} from 'remotion'", | ||
interpolate: "import {interpolate} from 'remotion'", | ||
interpolateColors: "import {interpolateColors} from 'remotion'", | ||
Easing: "import {Easing} from 'remotion'", | ||
getInputProps: "import {getInputProps} from 'remotion'", | ||
getStaticFiles: "import {getStaticFiles} from '@remotion/studio'", | ||
watchStaticFiles: "import {watchStaticFiles} from '@remotion/studio'", | ||
continueRender: "import {continueRender} from 'remotion'", | ||
delayRender: "import {delayRender} from 'remotion'", | ||
AbsoluteFill: "import {AbsoluteFill} from 'remotion'", | ||
Sequence: "import {Sequence} from 'remotion'", | ||
Composition: "import {Composition} from 'remotion'", | ||
Audio: "import {Audio} from 'remotion'", | ||
Video: "import {Video} from 'remotion'", | ||
OffthreadVideo: "import {OffthreadVideo} from 'remotion'", | ||
Series: "import {Series} from 'remotion'", | ||
Still: "import {Still} from 'remotion'", | ||
Freeze: "import {Freeze} from 'remotion'", | ||
Loop: "import {Loop} from 'remotion'", | ||
staticFile: "import {staticFile} from 'remotion'", | ||
Config: "import {Config} from '@remotion/cli/config'", | ||
Img: "import {Img} from 'remotion'", | ||
IFrame: "import {IFrame} from 'remotion'", | ||
Folder: "import {Folder} from 'remotion'", | ||
useCurrentScale: "import {useCurrentScale} from 'remotion'", | ||
VERSION: "import {VERSION} from 'remotion'", | ||
watchStaticFile: "import {watchStaticFile} from 'remotion'", | ||
z: "import {z} from 'zod'", | ||
styled: "import styled from 'styled-components'", | ||
}; |
Oops, something went wrong.