From 004675c75898a6d741d168b0a1f15d38fb11008a Mon Sep 17 00:00:00 2001 From: "Jyotirmoy Bandyopadhyaya [Bravo68]" Date: Wed, 20 Sep 2023 19:06:52 +0530 Subject: [PATCH] try: retrying adding provance --- .npmrc | 1 + apps/eslint-config/src/default.ts | 3 +++ apps/prettier-config/package.json | 2 +- apps/tsconfig/bun.json | 38 +++++++++++++++---------------- 4 files changed, 23 insertions(+), 21 deletions(-) diff --git a/.npmrc b/.npmrc index 68dafe2..6b1204b 100644 --- a/.npmrc +++ b/.npmrc @@ -4,3 +4,4 @@ ignore-engines = true tag-version-prefix = "" auto-install-peers = true strict-peer-dependencies = false +provenance = true \ No newline at end of file diff --git a/apps/eslint-config/src/default.ts b/apps/eslint-config/src/default.ts index 1e5657d..0dee1ed 100644 --- a/apps/eslint-config/src/default.ts +++ b/apps/eslint-config/src/default.ts @@ -55,9 +55,12 @@ const config: Linter.Config = { "react/no-array-index-key": 2, // SonarJS "sonarjs/no-duplicate-string": 0, + "sonarjs/cognitive-complexity": "warn", // Unicorn "unicorn/no-null": 0, + "unicorn/filename-case": "off", "unicorn/prefer-module": 0, + "unicorn/no-array-reduce": "off", "unicorn/no-useless-undefined": 0, "unicorn/prevent-abbreviations": 0, "unicorn/no-await-expression-member": 0, diff --git a/apps/prettier-config/package.json b/apps/prettier-config/package.json index 7563a17..0519fcd 100644 --- a/apps/prettier-config/package.json +++ b/apps/prettier-config/package.json @@ -42,4 +42,4 @@ "publishConfig": { "access": "public" } -} +} \ No newline at end of file diff --git a/apps/tsconfig/bun.json b/apps/tsconfig/bun.json index c937271..048df52 100644 --- a/apps/tsconfig/bun.json +++ b/apps/tsconfig/bun.json @@ -1,22 +1,20 @@ { - "compilerOptions": { - "lib": ["ESNext"], - "module": "esnext", - "target": "esnext", - "moduleResolution": "bundler", - "moduleDetection": "force", - "allowImportingTsExtensions": true, - "noEmit": true, - "composite": true, - "strict": true, - "downlevelIteration": true, - "skipLibCheck": true, - "jsx": "preserve", - "allowSyntheticDefaultImports": true, - "forceConsistentCasingInFileNames": true, - "allowJs": true, - "types": [ - "bun-types" - ] - } + "compilerOptions": { + "lib": ["ESNext"], + "module": "esnext", + "target": "esnext", + "moduleResolution": "bundler", + "moduleDetection": "force", + "allowImportingTsExtensions": true, + "noEmit": true, + "composite": true, + "strict": true, + "downlevelIteration": true, + "skipLibCheck": true, + "jsx": "preserve", + "allowSyntheticDefaultImports": true, + "forceConsistentCasingInFileNames": true, + "allowJs": true, + "types": ["bun-types"] + } }