lint(eslint): migrate to eslint and prettier (#25046)

This commit is contained in:
Liam DeBeasi
2022-04-04 11:12:53 -04:00
committed by GitHub
parent 12fd19dd4d
commit 5676bab316
826 changed files with 56539 additions and 52754 deletions

View File

@ -7,7 +7,6 @@
* the 0 breakpoint.
*/
export const getBackdropValueForSheet = (x: number, backdropBreakpoint: number) => {
/**
* We will use these points:
* (backdropBreakpoint, 0)
@ -48,5 +47,5 @@ export const getBackdropValueForSheet = (x: number, backdropBreakpoint: number)
* gesture offset.
*/
return (x * slope) + b;
}
return x * slope + b;
};