From 1bc5d35f3431a7943a78104c30663d432665fc79 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Thu, 29 Feb 2024 14:16:22 -0500 Subject: [PATCH] Tidy --- .eslintrc.cjs | 4 +--- package.json | 2 +- public/manifest.json | 2 +- tsconfig.json | 2 +- 4 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index f0c13d77c7..4329b1ae96 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -4,13 +4,12 @@ module.exports = { jest: true, }, extends: [ - "react-app", "plugin:react/recommended", "plugin:react/jsx-runtime", "plugin:react-hooks/recommended", "plugin:import/recommended", ], - ignorePatterns: ["*.dic.js"], + ignorePatterns: ["*.dic.js", "react-app-env.d.ts"], parser: "@typescript-eslint/parser", parserOptions: { ecmaFeatures: { jsx: true }, @@ -51,7 +50,6 @@ module.exports = { { files: ["*.ts", "*.tsx"], extends: [ - "react-app", "plugin:@typescript-eslint/recommended", "plugin:import/typescript", ], diff --git a/package.json b/package.json index 66a7eaa3aa..96cb1fb515 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "fmt-backend-check": "dotnet-format --check && dotnet-format --check Backend.Tests", "fmt-frontend": " prettier --write \"./{.github,.vscode,certmgr,deploy,docs,public,scripts,src}/**/*.{js,jsx,ts,tsx,json,md,yml,yaml}\"", "fmt-frontend-check": "prettier --check \"./{.github,.vscode,certmgr,deploy,docs,public,scripts,src}/**/*.{js,jsx,ts,tsx,json,md,yml,yaml}\"", - "frontend": " npm run set-release && npx parcel public/index.html", + "frontend": "npm run set-release && npx parcel public/index.html", "gen-backend-coverage-report": "tsc scripts/genBackendCoverageReport.ts && node scripts/genBackendCoverageReport.js", "license-report-backend": " dotnet-project-licenses --include-transitive --input ./Backend/BackendFramework.csproj --output --outfile docs/user_guide/assets/licenses/backend_licenses.txt", "license-summary-backend": "dotnet-project-licenses --include-transitive --input ./Backend/BackendFramework.csproj", diff --git a/public/manifest.json b/public/manifest.json index 0af41c8255..0d803acdbe 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -1,6 +1,6 @@ { "short_name": "The Combine", - "name": "The Word Combine", + "name": "The Combine", "icons": [ { "src": "favicon.ico", diff --git a/tsconfig.json b/tsconfig.json index 9f9b6736f9..c0846cec78 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -19,5 +19,5 @@ "target": "es5" }, "exclude": ["*.dic.js"], - "include": [".eslintrc.cjs", "src", "scripts"] + "include": [".eslintrc.cjs", "config", "public", "src", "scripts"] }