-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
134 additions
and
1,065 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: release-please | ||
name: Release Please | ||
|
||
on: | ||
push: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: stale | ||
name: Stale | ||
|
||
on: | ||
schedule: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"recommendations": ["biomejs.biome", "vitest.explorer"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", | ||
"vcs": { "enabled": true, "clientKind": "git", "useIgnoreFile": true }, | ||
"formatter": { | ||
"indentStyle": "space", | ||
"indentWidth": 4, | ||
"lineWidth": 150, | ||
"bracketSpacing": false | ||
}, | ||
"linter": { | ||
"rules": { | ||
"style": { | ||
"noNonNullAssertion": "off", | ||
"noParameterAssign": "off" | ||
}, | ||
"complexity": { | ||
"noForEach": "off" | ||
}, | ||
"performance": { | ||
"noDelete": "off", | ||
"noAccumulatingSpread": "off" | ||
}, | ||
"suspicious": { | ||
"noImplicitAnyLet": "off", | ||
"noExplicitAny": "off" | ||
} | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
"url": "https://github.com/koenkk/zigbee-herdsman/issues" | ||
}, | ||
"packageManager": "[email protected]", | ||
"files": ["dist"], | ||
"contributors": [ | ||
{ | ||
"name": "Koen Kanters", | ||
|
@@ -38,23 +39,16 @@ | |
"deprecated": false, | ||
"description": "An open source ZigBee gateway solution with node.js.", | ||
"devDependencies": { | ||
"@eslint/core": "^0.11.0", | ||
"@eslint/js": "^9.20.0", | ||
"@ianvs/prettier-plugin-sort-imports": "^4.4.1", | ||
"@biomejs/biome": "^1.9.4", | ||
"@serialport/binding-mock": "^10.2.2", | ||
"@types/debounce": "^1.2.4", | ||
"@types/eslint__js": "^8.42.3", | ||
"@types/node": "^22.13.4", | ||
"@vitest/coverage-v8": "^3.0.5", | ||
"eslint": "^9.20.1", | ||
"eslint-config-prettier": "^10.0.1", | ||
"prettier": "^3.5.1", | ||
"rimraf": "^6.0.1", | ||
"typedoc": "^0.27.7", | ||
"typedoc-plugin-markdown": "^4.4.2", | ||
"typedoc-plugin-no-inherit": "^1.5.0", | ||
"typedoc": "^0.27.7", | ||
"typescript": "^5.7.3", | ||
"typescript-eslint": "^8.24.0", | ||
"vitest": "^3.0.5" | ||
}, | ||
"homepage": "https://github.com/Koenkk/zigbee-herdsman", | ||
|
@@ -79,9 +73,7 @@ | |
"test": "vitest run --config ./test/vitest.config.mts", | ||
"test:coverage": "vitest run --config ./test/vitest.config.mts --coverage", | ||
"test:watch": "vitest watch --config ./test/vitest.config.mts", | ||
"eslint": "eslint --max-warnings=0", | ||
"pretty:write": "prettier --write .", | ||
"pretty:check": "prettier --check .", | ||
"check": "biome check", | ||
"typedoc": "typedoc --gitRevision $(git describe --tag --abbrev=0) --tsconfig tsconfig.json --excludePrivate --excludeProtected --excludeExternals --entryPointStrategy expand ./src --sourceLinkTemplate 'https://github.com/Koenkk/zigbee-herdsman/blob/{gitRevision}/{path}#L{line}' -out typedoc", | ||
"clean": "rimraf temp coverage dist tsconfig.tsbuildinfo", | ||
"prepack": "pnpm run clean && pnpm run build" | ||
|
Oops, something went wrong.