From 4bd3d6764bfd48c881d9722825309ddb5956c758 Mon Sep 17 00:00:00 2001 From: MCMXC <16797721+mcmxcdev@users.noreply.github.com> Date: Tue, 25 Jul 2023 09:20:43 -0600 Subject: style: reformat all files properly - remove .json from .eslintignore - add type intellisense to .prettierrc.js - install missing @jest/types which is used in jest.config.js - split up typecheck and lint into two separate commands - remove --require-pragma flag from reformat-files which leads to unformatted files - install suggested @types/prop-types and @types/react-loader dependencies - add @ts-expect-error to Loader usages - reformat all scss files automatically with reformat-files command --- src/styles/globals.scss | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) (limited to 'src/styles/globals.scss') diff --git a/src/styles/globals.scss b/src/styles/globals.scss index b6a7949c2..fe4123242 100644 --- a/src/styles/globals.scss +++ b/src/styles/globals.scss @@ -1,26 +1,26 @@ -$raw-theme-brand-primary: "114,102,240"; -$raw-theme-brand-success: "92,184,92"; -$raw-theme-brand-info: "91,192,222"; -$raw-theme-brand-warning: "255,159,0"; -$raw-theme-brand-danger: "217,83,79"; -$raw-theme-gray-dark: "55,58,60"; -$raw-theme-gray: "85,89,92"; -$raw-theme-gray-light: "129,138,145"; -$raw-theme-gray-lighter: "236,238,239"; -$raw-theme-gray-lightest: "247,247,249"; +$raw-theme-brand-primary: '114,102,240'; +$raw-theme-brand-success: '92,184,92'; +$raw-theme-brand-info: '91,192,222'; +$raw-theme-brand-warning: '255,159,0'; +$raw-theme-brand-danger: '217,83,79'; +$raw-theme-gray-dark: '55,58,60'; +$raw-theme-gray: '85,89,92'; +$raw-theme-gray-light: '129,138,145'; +$raw-theme-gray-lighter: '236,238,239'; +$raw-theme-gray-lightest: '247,247,249'; $raw-theme-border-radius: 6px; $raw-theme-border-radius-small: 3px; $raw-theme-sidebar-width: 68px; -$raw-theme-text-color: "55,58,60"; -$raw-theme-transition-time: .5s; -$raw-theme-inset-shadow: inset 0 2px 5px rgba(0, 0, 0, .03); -$raw-dark-theme-black: "26,26,26"; -$raw-dark-theme-gray-darkest: "30,30,30"; -$raw-dark-theme-gray-darker: "45,47,49"; -$raw-dark-theme-gray-dark: "56,58,59"; -$raw-dark-theme-gray: "71,73,75"; -$raw-dark-theme-gray-light: "81,83,85"; -$raw-dark-theme-gray-lighter: "138,139,139"; -$raw-dark-theme-gray-lightest: "255,255,255"; -$raw-dark-theme-gray-smoke: "206,208,209"; -$raw-dark-theme-text-color: "255,255,255"; +$raw-theme-text-color: '55,58,60'; +$raw-theme-transition-time: 0.5s; +$raw-theme-inset-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.03); +$raw-dark-theme-black: '26,26,26'; +$raw-dark-theme-gray-darkest: '30,30,30'; +$raw-dark-theme-gray-darker: '45,47,49'; +$raw-dark-theme-gray-dark: '56,58,59'; +$raw-dark-theme-gray: '71,73,75'; +$raw-dark-theme-gray-light: '81,83,85'; +$raw-dark-theme-gray-lighter: '138,139,139'; +$raw-dark-theme-gray-lightest: '255,255,255'; +$raw-dark-theme-gray-smoke: '206,208,209'; +$raw-dark-theme-text-color: '255,255,255'; -- cgit v1.2.3-70-g09d2