Skip to content

Commit

Permalink
Tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
imnasnainaec committed Feb 29, 2024
1 parent a26ed3c commit 1bc5d35
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
4 changes: 1 addition & 3 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
Expand Down Expand Up @@ -51,7 +50,6 @@ module.exports = {
{
files: ["*.ts", "*.tsx"],
extends: [
"react-app",
"plugin:@typescript-eslint/recommended",
"plugin:import/typescript",
],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"short_name": "The Combine",
"name": "The Word Combine",
"name": "The Combine",
"icons": [
{
"src": "favicon.ico",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@
"target": "es5"
},
"exclude": ["*.dic.js"],
"include": [".eslintrc.cjs", "src", "scripts"]
"include": [".eslintrc.cjs", "config", "public", "src", "scripts"]
}

0 comments on commit 1bc5d35

Please sign in to comment.