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 = ""
auto-install-peers = true
strict-peer-dependencies = false
provenance = true

View File

@ -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,

View File

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

View File

@ -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"]
}
}