File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,12 @@ export default tseslint.config([
8484 } ,
8585
8686 jsdoc ( {
87- config : ' flat/recommended-typescript' , // change to 'flat/recommended-typescript-error' once warnings are fixed
87+ config : " flat/recommended-typescript" ,
8888 files : [ "src/**/*.ts" ] ,
89+ // Temporarily enable individual rules when they are fixed, until all current warnings are gone,
90+ // and then remove manual config in favor of `config: "flat/recommended-typescript-error"`
91+ rules : {
92+ "jsdoc/valid-types" : "error"
93+ }
8994 } ) ,
9095] )
Original file line number Diff line number Diff line change 1+ /**
2+ * Content of this file below the imports is a copy of mongodb.d.ts from the version of mongodb package
3+ * listed in package.json:devDependencies. We disabled eslint for this file, since it does not come from us
4+ * and does not necessary have to adhere to our rules.
5+ */
6+ /* eslint-disable */
17import type { SrvRecord } from "dns"
28import type { Socket , TcpNetConnectOpts } from "net"
39import type {
You can’t perform that action at this time.
0 commit comments