Skip to content

Commit

Permalink
Updated dependencies + fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
bwp91 committed Aug 3, 2024
1 parent d607e09 commit 271cee8
Show file tree
Hide file tree
Showing 7 changed files with 375 additions and 306 deletions.
1 change: 1 addition & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"brace-style": ["error"],
"prefer-arrow-callback": "warn",
"max-len": ["warn", 180],
"@typescript-eslint/no-unused-vars": ["error", { "caughtErrors": "none" }],

"@typescript-eslint/camelcase": "off", // off as dns-packet has a lot of stuff like this
"@typescript-eslint/no-non-null-assertion": "off",
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to `@homebridge/ciao` will be documented in this file. This project tries to adhere to [Semantic Versioning](http://semver.org/).

## BETA

### Changed

- Updated dependencies + fix lint

## v1.3.0 (2024-07-08)

### Added
Expand Down
10 changes: 5 additions & 5 deletions jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import type { Config } from '@jest/types';
import type { Config } from "jest";

const config: Config.InitialOptions = {
const config: Config = {
preset: "ts-jest",
testEnvironment: "node",
coverageReporters: ["lcov"],
collectCoverageFrom: [
"src/**",
"!src/internal/**"
]
}
"!src/internal/**",
],
};

export default config;
Loading

0 comments on commit 271cee8

Please sign in to comment.