try: retrying adding provance

This commit is contained in:
Jyotirmoy Bandyopadhayaya 2023-09-20 19:06:52 +05:30
parent e5d528a657
commit 004675c758
Signed by: bravo68web
GPG Key ID: F5671FD7BCB9917A
4 changed files with 23 additions and 21 deletions

1
.npmrc
View File

@ -4,3 +4,4 @@ ignore-engines = true
tag-version-prefix = "" tag-version-prefix = ""
auto-install-peers = true auto-install-peers = true
strict-peer-dependencies = false strict-peer-dependencies = false
provenance = true

View File

@ -55,9 +55,12 @@ const config: Linter.Config = {
"react/no-array-index-key": 2, "react/no-array-index-key": 2,
// SonarJS // SonarJS
"sonarjs/no-duplicate-string": 0, "sonarjs/no-duplicate-string": 0,
"sonarjs/cognitive-complexity": "warn",
// Unicorn // Unicorn
"unicorn/no-null": 0, "unicorn/no-null": 0,
"unicorn/filename-case": "off",
"unicorn/prefer-module": 0, "unicorn/prefer-module": 0,
"unicorn/no-array-reduce": "off",
"unicorn/no-useless-undefined": 0, "unicorn/no-useless-undefined": 0,
"unicorn/prevent-abbreviations": 0, "unicorn/prevent-abbreviations": 0,
"unicorn/no-await-expression-member": 0, "unicorn/no-await-expression-member": 0,

View File

@ -42,4 +42,4 @@
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
} }
} }

View File

@ -1,22 +1,20 @@
{ {
"compilerOptions": { "compilerOptions": {
"lib": ["ESNext"], "lib": ["ESNext"],
"module": "esnext", "module": "esnext",
"target": "esnext", "target": "esnext",
"moduleResolution": "bundler", "moduleResolution": "bundler",
"moduleDetection": "force", "moduleDetection": "force",
"allowImportingTsExtensions": true, "allowImportingTsExtensions": true,
"noEmit": true, "noEmit": true,
"composite": true, "composite": true,
"strict": true, "strict": true,
"downlevelIteration": true, "downlevelIteration": true,
"skipLibCheck": true, "skipLibCheck": true,
"jsx": "preserve", "jsx": "preserve",
"allowSyntheticDefaultImports": true, "allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,
"allowJs": true, "allowJs": true,
"types": [ "types": ["bun-types"]
"bun-types" }
]
}
} }