Skip to content

Commit 63c316f

Browse files
authored
Merge branch 'main' into devin/1761239214-add-test-coverage
2 parents 67b5160 + 48898e4 commit 63c316f

File tree

5 files changed

+296
-97
lines changed

5 files changed

+296
-97
lines changed

jest.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@ const esModules = [
44
'@codemirror',
55
'@jupyter',
66
'@microsoft',
7+
'@deepnote',
78
'exenv-es6',
89
'lib0',
910
'nanoid',
1011
'vscode-ws-jsonrpc',
1112
'y-protocols',
1213
'y-websocket',
13-
'yjs'
14+
'yjs',
15+
'yaml'
1416
].join('|');
1517

1618
const baseConfig = jestJupyterLab(__dirname);

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,9 +161,12 @@
161161
"args": "none"
162162
}
163163
],
164-
"@typescript-eslint/no-explicit-any": "off",
164+
"@typescript-eslint/no-explicit-any": "error",
165165
"@typescript-eslint/no-namespace": "off",
166166
"@typescript-eslint/no-use-before-define": "off",
167+
"@typescript-eslint/no-floating-promises": "error",
168+
"@typescript-eslint/no-non-null-assertion": "error",
169+
"@typescript-eslint/prefer-nullish-coalescing": "error",
167170
"@typescript-eslint/quotes": [
168171
"error",
169172
"single",

0 commit comments

Comments
 (0)