File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,10 @@ export default [
2727 'security/detect-pseudoRandomBytes' : 'error' ,
2828 'space-before-function-paren' : 'off' ,
2929 'object-curly-spacing' : 'off' ,
30+ 'n/no-missing-import' : [ 'error' , {
31+ allowModules : [ '@modelcontextprotocol/sdk' ] ,
32+ resolvePaths : [ '/path/to/a/modules/directory' ]
33+ } ]
3034 } ,
3135 languageOptions : {
3236 ecmaVersion : 2024 ,
Original file line number Diff line number Diff line change 11import { debuglog } from 'node:util'
2- import { startServer } from 'src /main.ts'
2+ import { startServer } from '.. /main.ts'
33const debug = debuglog ( 'mcp-server-nodejs-api-docs' )
44
55debug ( 'Starting Server...' )
Original file line number Diff line number Diff line change @@ -33,10 +33,6 @@ interface FormattingOptions {
3333 * Service responsible for formatting Node.js API documentation into readable markdown content
3434 */
3535export class DocsFormatter {
36- constructor ( ) {
37- // Initialize any needed properties here
38- }
39-
4036 /**
4137 * Formats content by adding extra newlines for better markdown rendering
4238 */
You can’t perform that action at this time.
0 commit comments