From 8076d2de4bd97edee799301d74cd5b4fe098a624 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antti=20Pitk=C3=A4nen?= Date: Tue, 28 Feb 2023 15:21:50 +0200 Subject: [PATCH] Prettier changes (NFC) --- styles/style.scss | 4 ++-- tsconfig.json | 22 ++++------------------ 2 files changed, 6 insertions(+), 20 deletions(-) diff --git a/styles/style.scss b/styles/style.scss index 871a03d..dc1e1ae 100644 --- a/styles/style.scss +++ b/styles/style.scss @@ -389,8 +389,8 @@ footer { } .social { height: 30px; - margin-left: .5em; - margin-right: .5em; + margin-left: 0.5em; + margin-right: 0.5em; } .feed { width: $feedWidth; diff --git a/tsconfig.json b/tsconfig.json index 3689b66..9ddae14 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,11 +1,7 @@ { "compilerOptions": { "target": "es5", - "lib": [ - "dom", - "dom.iterable", - "esnext" - ], + "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": true, "strict": false, @@ -19,17 +15,7 @@ "jsx": "preserve", "incremental": true }, - "typeRoots": [ - "./node_modules/@types", - "./typings" - ], - "exclude": [ - "node_modules" - ], - "include": [ - "next-env.d.ts", - "**/*.ts", - "**/*.tsx", - "./typings/*" - ] + "typeRoots": ["./node_modules/@types", "./typings"], + "exclude": ["node_modules"], + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "./typings/*"] }