Change prettier rules

This commit is contained in:
ErickSkrauch
2020-05-24 02:08:24 +03:00
parent 73f0c37a6a
commit f85b9d8d35
382 changed files with 24137 additions and 26046 deletions

View File

@@ -1,13 +1,4 @@
export type Color =
| 'green'
| 'blue'
| 'darkBlue'
| 'violet'
| 'lightViolet'
| 'orange'
| 'red'
| 'black'
| 'white';
export type Color = 'green' | 'blue' | 'darkBlue' | 'violet' | 'lightViolet' | 'orange' | 'red' | 'black' | 'white';
export type Skin = 'dark' | 'light';
@@ -22,15 +13,15 @@ export const COLOR_BLACK: Color = 'black';
export const COLOR_WHITE: Color = 'white';
export const colors: Array<Color> = [
COLOR_GREEN,
COLOR_BLUE,
COLOR_DARK_BLUE,
COLOR_VIOLET,
COLOR_LIGHT_VIOLET,
COLOR_ORANGE,
COLOR_RED,
COLOR_BLACK,
COLOR_WHITE,
COLOR_GREEN,
COLOR_BLUE,
COLOR_DARK_BLUE,
COLOR_VIOLET,
COLOR_LIGHT_VIOLET,
COLOR_ORANGE,
COLOR_RED,
COLOR_BLACK,
COLOR_WHITE,
];
export const SKIN_DARK: Skin = 'dark';