Skip to content
Snippets Groups Projects
Unverified Commit 025114b3 authored by Maxime FRIESS's avatar Maxime FRIESS :blue_heart:
Browse files

[*] Fixed missing lint/pretty

parent bd927021
Branches
Tags
No related merge requests found
Pipeline #69320 passed with stages
in 15 minutes and 22 seconds
......@@ -22,8 +22,8 @@ test:
- node_modules/
script:
- yarn install --dev
- yarn run prettier --check .
- yarn run eslint .
- yarn run prettier --check src
- yarn run eslint src
podman:
stage: build
......
......@@ -54,7 +54,7 @@
"test": "react-scripts test",
"eject": "react-scripts eject",
"postinstall": "husky install",
"pretty": "prettier --write \"src/**/*.{js,jsx,json}\"",
"pretty": "prettier --write src",
"lint": "eslint src",
"prepare": "husky install"
},
......
......@@ -2,7 +2,7 @@
$body-bg: #f8fafc;
// Typography
$font-family-sans-serif: "Nunito", sans-serif;
$font-family-sans-serif: 'Nunito', sans-serif;
$font-size-base: 0.9rem;
$line-height-base: 1.6;
......
// Fonts
@import url("https://fonts.googleapis.com/css?family=Nunito");
@import url('https://fonts.googleapis.com/css?family=Nunito');
// Variables
@import "variables";
@import 'variables';
// Reset
@import "~sass-reset";
@import '~sass-reset';
.MuiCollapse-wrapper .MuiListItemIcon-root {
margin-right: 16px;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment