Skip to content

Commit 4c16e50

Browse files
committed
More lint/format fixes, fix missing dep
1 parent cf02b00 commit 4c16e50

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

.oxlintrc.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@
3434
"tables": "readonly",
3535
"createBlob": "readonly",
3636
"lockdown": "readonly",
37-
"threads": "readonly"
37+
"threads": "readonly",
38+
"headersTest": "readonly",
39+
"Resource": "readonly"
3840
},
39-
"ignorePatterns": []
41+
"ignorePatterns": ["unitTests/security/jsLoader/fixtures"]
4042
}

.prettierignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# This file extends the .gitignore file to include files that should not be formatted by Prettier
2+
# Only list additional files and directories that aren't already in `.gitignore`
3+
4+
unitTests/security/jsLoader/fixtures

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,14 @@
9595
"fs-extra": "^11.3.2",
9696
"globals": "^16.5.0",
9797
"mocha": "^11.7.4",
98+
"mqtt": "~4.3.8",
9899
"oxlint": "^1.31.0",
99100
"prettier": "~3.7.3",
100101
"rewire": "^9.0.1",
101102
"sinon": "^21.0.0",
102103
"supertest": "^7.1.4",
103104
"tsx": "^4.20.6",
104-
"typescript": "^5.7.3",
105+
"typescript": "^5.8.2",
105106
"typescript-eslint": "^8.45.0",
106107
"undici": "^7.16.0",
107108
"why-is-node-still-running": "^1.0.0"

prettier.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ import harperConfig from '@harperdb/code-guidelines/prettier';
77

88
export default {
99
...harperConfig,
10+
1011
// Add any project-specific overrides here if needed
1112
};

0 commit comments

Comments
 (0)