From f44e0c19a2de025679895749835af82c774f60b1 Mon Sep 17 00:00:00 2001 From: quantum-grit Date: Wed, 27 Sep 2023 16:56:57 +0300 Subject: [PATCH] formatting fixes --- .eslintrc.js | 2 +- .prettierignore | 1 + README.md | 2 ++ public/locales/en/admin.json | 2 +- tsconfig.json | 20 +++----------------- 5 files changed, 8 insertions(+), 19 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 4cb46eede..37b2cbf0c 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -28,7 +28,7 @@ module.exports = { 'sentry.client.config.js', 'sentry.server.config.js', 'next-sitemap.config.js', - 'e2e/*' + 'e2e/*', ], rules: { 'react/display-name': 'off', diff --git a/.prettierignore b/.prettierignore index 162c6de6b..a1174a3c8 100644 --- a/.prettierignore +++ b/.prettierignore @@ -4,6 +4,7 @@ yarn.lock package-lock.json public/fonts public/img +public/js manifests .github !.github/workflows diff --git a/README.md b/README.md index f6ca97ac8..74fe9987d 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,9 @@ Watch releases of this repository to be notified about future updates: ## Contributors ✨ + [![All Contributors](https://img.shields.io/badge/all_contributors-72-orange.svg?style=flat-square)](#contributors-) + Please check [contributors guide](https://github.com/podkrepi-bg/frontend/blob/master/CONTRIBUTING.md) for: diff --git a/public/locales/en/admin.json b/public/locales/en/admin.json index 86b6b3a3d..5ff27c959 100644 --- a/public/locales/en/admin.json +++ b/public/locales/en/admin.json @@ -16,5 +16,5 @@ "view": "View", "edit": "Edit", "delete": "Delete" - }, + } } diff --git a/tsconfig.json b/tsconfig.json index 38d176097..34d5bfbac 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,11 +1,7 @@ { "compilerOptions": { "target": "ESNext", - "lib": [ - "dom", - "dom.iterable", - "esnext" - ], + "lib": ["dom", "dom.iterable", "esnext"], "allowJs": false, "checkJs": false, "skipLibCheck": true, @@ -32,16 +28,6 @@ "incremental": true, "outDir": ".next" }, - "include": [ - "next-env.d.ts", - "**/*.ts", - "**/*.tsx" - ], - "exclude": [ - "node_modules", - ".next", - "e2e" - - ] - + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], + "exclude": ["node_modules", ".next", "e2e"] }