Compare commits

...

3 Commits

6 changed files with 30 additions and 27 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

@ -1,13 +1,13 @@
{
"name": "@bravo68web/eslint-config",
"version": "1.1.3",
"version": "1.2.0",
"description": "The official ESLint configuration for bravo68web projects",
"license": "MIT",
"author": "Bravo68web <hi@b68.dev> (https://github.com/bravo68web/)",
"homepage": "https://github.com/bravo68web/node-config#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/bravo68web/node-config.git"
"url": "https://github.com/bravo68web/node-config"
},
"bugs": {
"url": "https://github.com/bravo68web/node-config/issues"

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

@ -1,12 +1,12 @@
{
"name": "@bravo68web/prettier-config",
"version": "1.1.3",
"version": "1.2.0",
"description": "The official Prettier configuration for bravo68web projects",
"author": "Bravo68web <hi@b68.dev> (https://github.com/bravo68web/)",
"homepage": "https://github.com/bravo68web/node-config#readme",
"repository": {
"type": "git",
"url": "https://github.com/bravo68web/node-config.git"
"url": "https://github.com/bravo68web/node-config"
},
"bugs": {
"url": "https://github.com/bravo68web/node-config/issues"
@ -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"]
}
}

View File

@ -1,19 +1,20 @@
{
"name": "@bravo68web/tsconfig",
"version": "1.1.3",
"version": "1.2.0",
"description": "Typescript config for bravo68web, ensure the consistency of code quality.",
"license": "MIT",
"author": "Bravo68web <hi@b68.dev> (https://github.com/bravo68web/)",
"homepage": "https://github.com/bravo68web/node-config#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/bravo68web/node-config.git"
"url": "https://github.com/bravo68web/node-config"
},
"bugs": {
"url": "https://github.com/bravo68web/node-config/issues"
},
"files": [
"base.json",
"bun.json",
"default.json",
"nobuild.json",
"non-strict.json",