repoburg 1.3.87 → 1.3.91
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/backend/.env +20 -0
- package/backend/.repoburg/hooks/README.md +53 -0
- package/backend/.repoburg/hooks/eslint-hook.ts +46 -0
- package/backend/.repoburg/hooks/example-hook.ts +62 -0
- package/backend/dist/src/ai-actions/ai-actions.controller.js +67 -0
- package/backend/dist/src/ai-actions/ai-actions.controller.js.map +1 -1
- package/backend/dist/src/app.module.d.ts +3 -1
- package/backend/dist/src/app.module.js +17 -1
- package/backend/dist/src/app.module.js.map +1 -1
- package/backend/dist/src/application-state/application-state.controller.js +123 -0
- package/backend/dist/src/application-state/application-state.controller.js.map +1 -1
- package/backend/dist/src/application-state/application-state.service.d.ts +3 -0
- package/backend/dist/src/application-state/application-state.service.js +18 -1
- package/backend/dist/src/application-state/application-state.service.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-alibaba-config.dto.js +2 -0
- package/backend/dist/src/application-state/dto/set-alibaba-config.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-auto-context-fetch-enabled.dto.js +4 -0
- package/backend/dist/src/application-state/dto/set-auto-context-fetch-enabled.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-auto-send-to-ai-studio-enabled.dto.js +2 -0
- package/backend/dist/src/application-state/dto/set-auto-send-to-ai-studio-enabled.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-context-token-limit.dto.js +6 -0
- package/backend/dist/src/application-state/dto/set-context-token-limit.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-execution-strategy.dto.js +6 -0
- package/backend/dist/src/application-state/dto/set-execution-strategy.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-followup-token-limit.dto.js +5 -0
- package/backend/dist/src/application-state/dto/set-followup-token-limit.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-history-compression-enabled.dto.js +4 -0
- package/backend/dist/src/application-state/dto/set-history-compression-enabled.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-llm-retry-enabled.dto.js +4 -0
- package/backend/dist/src/application-state/dto/set-llm-retry-enabled.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-llm-retry-max-attempts.dto.js +6 -0
- package/backend/dist/src/application-state/dto/set-llm-retry-max-attempts.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-manual-llm-enabled.dto.js +4 -0
- package/backend/dist/src/application-state/dto/set-manual-llm-enabled.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-openrouter-config.dto.js +2 -0
- package/backend/dist/src/application-state/dto/set-openrouter-config.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-streaming-enabled.dto.js +2 -0
- package/backend/dist/src/application-state/dto/set-streaming-enabled.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-syntax-validation-enabled.dto.js +4 -0
- package/backend/dist/src/application-state/dto/set-syntax-validation-enabled.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-theme.dto.js +6 -0
- package/backend/dist/src/application-state/dto/set-theme.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-tools-enabled.dto.js +4 -0
- package/backend/dist/src/application-state/dto/set-tools-enabled.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-websocket-enabled.dto.js +2 -0
- package/backend/dist/src/application-state/dto/set-websocket-enabled.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-yolo-mode-message.dto.js +5 -0
- package/backend/dist/src/application-state/dto/set-yolo-mode-message.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-yolo-mode.dto.js +4 -0
- package/backend/dist/src/application-state/dto/set-yolo-mode.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-zai-config.dto.js +2 -0
- package/backend/dist/src/application-state/dto/set-zai-config.dto.js.map +1 -1
- package/backend/dist/src/common/cache/etag-cache.service.d.ts +18 -0
- package/backend/dist/src/common/cache/etag-cache.service.js +98 -0
- package/backend/dist/src/common/cache/etag-cache.service.js.map +1 -0
- package/backend/dist/src/common/common.module.d.ts +2 -0
- package/backend/dist/src/common/common.module.js +22 -0
- package/backend/dist/src/common/common.module.js.map +1 -0
- package/backend/dist/src/common/interceptors/etag-cache.interceptor.d.ts +14 -0
- package/backend/dist/src/common/interceptors/etag-cache.interceptor.js +69 -0
- package/backend/dist/src/common/interceptors/etag-cache.interceptor.js.map +1 -0
- package/backend/dist/src/common/middleware/cache.middleware.d.ts +8 -0
- package/backend/dist/src/common/middleware/cache.middleware.js +44 -0
- package/backend/dist/src/common/middleware/cache.middleware.js.map +1 -0
- package/backend/dist/src/context-snippets/context-snippets.controller.js +38 -0
- package/backend/dist/src/context-snippets/context-snippets.controller.js.map +1 -1
- package/backend/dist/src/context-templates/context-templates.controller.js +104 -0
- package/backend/dist/src/context-templates/context-templates.controller.js.map +1 -1
- package/backend/dist/src/context-templates/dto/context-template.dto.d.ts +1 -1
- package/backend/dist/src/context-templates/dto/context-template.dto.js +44 -1
- package/backend/dist/src/context-templates/dto/context-template.dto.js.map +1 -1
- package/backend/dist/src/core-entities/ai-action.entity.js +73 -0
- package/backend/dist/src/core-entities/ai-action.entity.js.map +1 -1
- package/backend/dist/src/core-entities/base.entity.js +18 -0
- package/backend/dist/src/core-entities/base.entity.js.map +1 -1
- package/backend/dist/src/core-entities/context-snippet.entity.js +12 -0
- package/backend/dist/src/core-entities/context-snippet.entity.js.map +1 -1
- package/backend/dist/src/core-entities/context-template.entity.d.ts +2 -4
- package/backend/dist/src/core-entities/context-template.entity.js +50 -7
- package/backend/dist/src/core-entities/context-template.entity.js.map +1 -1
- package/backend/dist/src/core-entities/custom-snippet.entity.js +16 -0
- package/backend/dist/src/core-entities/custom-snippet.entity.js.map +1 -1
- package/backend/dist/src/core-entities/custom-variable.entity.js +24 -0
- package/backend/dist/src/core-entities/custom-variable.entity.js.map +1 -1
- package/backend/dist/src/core-entities/enums.d.ts +64 -0
- package/backend/dist/src/core-entities/enums.js +77 -0
- package/backend/dist/src/core-entities/enums.js.map +1 -0
- package/backend/dist/src/core-entities/execution-log.entity.js +15 -0
- package/backend/dist/src/core-entities/execution-log.entity.js.map +1 -1
- package/backend/dist/src/core-entities/index.d.ts +1 -2
- package/backend/dist/src/core-entities/index.js +1 -2
- package/backend/dist/src/core-entities/index.js.map +1 -1
- package/backend/dist/src/core-entities/llm-call-log.entity.js +43 -0
- package/backend/dist/src/core-entities/llm-call-log.entity.js.map +1 -1
- package/backend/dist/src/core-entities/mcp-config.entity.js +27 -0
- package/backend/dist/src/core-entities/mcp-config.entity.js.map +1 -1
- package/backend/dist/src/core-entities/mcp-tool.entity.js +26 -0
- package/backend/dist/src/core-entities/mcp-tool.entity.js.map +1 -1
- package/backend/dist/src/core-entities/project.entity.js +13 -0
- package/backend/dist/src/core-entities/project.entity.js.map +1 -1
- package/backend/dist/src/core-entities/session-input.entity.js +95 -0
- package/backend/dist/src/core-entities/session-input.entity.js.map +1 -1
- package/backend/dist/src/core-entities/session.entity.d.ts +1 -1
- package/backend/dist/src/core-entities/session.entity.js +96 -1
- package/backend/dist/src/core-entities/session.entity.js.map +1 -1
- package/backend/dist/src/core-entities/system-prompt.entity.js +29 -0
- package/backend/dist/src/core-entities/system-prompt.entity.js.map +1 -1
- package/backend/dist/src/core-entities/tool-hook.entity.js +21 -0
- package/backend/dist/src/core-entities/tool-hook.entity.js.map +1 -1
- package/backend/dist/src/custom-snippets/custom-snippets.controller.js +48 -0
- package/backend/dist/src/custom-snippets/custom-snippets.controller.js.map +1 -1
- package/backend/dist/src/custom-variables/custom-variables.controller.js +46 -0
- package/backend/dist/src/custom-variables/custom-variables.controller.js.map +1 -1
- package/backend/dist/src/global-config/global-config.controller.js +12 -0
- package/backend/dist/src/global-config/global-config.controller.js.map +1 -1
- package/backend/dist/src/global-config/global-config.service.d.ts +1 -0
- package/backend/dist/src/global-config/global-config.service.js.map +1 -1
- package/backend/dist/src/interactive-chat/streaming.controller.js +38 -0
- package/backend/dist/src/interactive-chat/streaming.controller.js.map +1 -1
- package/backend/dist/src/llm-call-logs/llm-call-logs.controller.js +96 -0
- package/backend/dist/src/llm-call-logs/llm-call-logs.controller.js.map +1 -1
- package/backend/dist/src/llm-provider/llm-provider.controller.js +18 -0
- package/backend/dist/src/llm-provider/llm-provider.controller.js.map +1 -1
- package/backend/dist/src/llm-provider/zai-llm.provider.js +1 -1
- package/backend/dist/src/llm-provider/zai-llm.provider.js.map +1 -1
- package/backend/dist/src/llm-responses/dto/submit-llm-response.dto.js +45 -0
- package/backend/dist/src/llm-responses/dto/submit-llm-response.dto.js.map +1 -1
- package/backend/dist/src/llm-responses/dto/sync-conversation.dto.js +24 -0
- package/backend/dist/src/llm-responses/dto/sync-conversation.dto.js.map +1 -1
- package/backend/dist/src/llm-responses/llm-responses.controller.js +32 -0
- package/backend/dist/src/llm-responses/llm-responses.controller.js.map +1 -1
- package/backend/dist/src/main.js +9 -0
- package/backend/dist/src/main.js.map +1 -1
- package/backend/dist/src/mcp/dto/batch-update-mcp-tools.dto.js +8 -0
- package/backend/dist/src/mcp/dto/batch-update-mcp-tools.dto.js.map +1 -1
- package/backend/dist/src/mcp/dto/create-mcp-config.dto.js +5 -0
- package/backend/dist/src/mcp/dto/create-mcp-config.dto.js.map +1 -1
- package/backend/dist/src/mcp/dto/update-mcp-config.dto.js +2 -0
- package/backend/dist/src/mcp/dto/update-mcp-config.dto.js.map +1 -1
- package/backend/dist/src/mcp/mcp.controller.js +21 -0
- package/backend/dist/src/mcp/mcp.controller.js.map +1 -1
- package/backend/dist/src/projects/dto/project.dto.js +14 -0
- package/backend/dist/src/projects/dto/project.dto.js.map +1 -1
- package/backend/dist/src/projects/projects.controller.js +31 -0
- package/backend/dist/src/projects/projects.controller.js.map +1 -1
- package/backend/dist/src/session-inputs/dto/session-input.dto.d.ts +12 -1
- package/backend/dist/src/session-inputs/dto/session-input.dto.js +103 -1
- package/backend/dist/src/session-inputs/dto/session-input.dto.js.map +1 -1
- package/backend/dist/src/session-inputs/session-input.subscriber.js.map +1 -1
- package/backend/dist/src/session-inputs/session-inputs.controller.d.ts +2 -1
- package/backend/dist/src/session-inputs/session-inputs.controller.js +84 -0
- package/backend/dist/src/session-inputs/session-inputs.controller.js.map +1 -1
- package/backend/dist/src/session-inputs/session-inputs.module.js +1 -0
- package/backend/dist/src/session-inputs/session-inputs.module.js.map +1 -1
- package/backend/dist/src/session-inputs/session-inputs.service.d.ts +7 -3
- package/backend/dist/src/session-inputs/session-inputs.service.js +51 -4
- package/backend/dist/src/session-inputs/session-inputs.service.js.map +1 -1
- package/backend/dist/src/sessions/dto/session.dto.js +91 -0
- package/backend/dist/src/sessions/dto/session.dto.js.map +1 -1
- package/backend/dist/src/sessions/sessions.controller.d.ts +1 -1
- package/backend/dist/src/sessions/sessions.controller.js +123 -3
- package/backend/dist/src/sessions/sessions.controller.js.map +1 -1
- package/backend/dist/src/sessions/sessions.service.d.ts +2 -1
- package/backend/dist/src/sessions/sessions.service.js +47 -18
- package/backend/dist/src/sessions/sessions.service.js.map +1 -1
- package/backend/dist/src/sub-agents/dto/create-sub-agent.dto.js +26 -0
- package/backend/dist/src/sub-agents/dto/create-sub-agent.dto.js.map +1 -1
- package/backend/dist/src/sub-agents/dto/update-sub-agent.dto.js +22 -0
- package/backend/dist/src/sub-agents/dto/update-sub-agent.dto.js.map +1 -1
- package/backend/dist/src/sub-agents/sub-agent-run.entity.d.ts +2 -7
- package/backend/dist/src/sub-agents/sub-agent-run.entity.js +63 -9
- package/backend/dist/src/sub-agents/sub-agent-run.entity.js.map +1 -1
- package/backend/dist/src/sub-agents/sub-agent-runs.controller.js +63 -0
- package/backend/dist/src/sub-agents/sub-agent-runs.controller.js.map +1 -1
- package/backend/dist/src/sub-agents/sub-agent.entity.js +47 -0
- package/backend/dist/src/sub-agents/sub-agent.entity.js.map +1 -1
- package/backend/dist/src/sub-agents/sub-agents.controller.js +25 -0
- package/backend/dist/src/sub-agents/sub-agents.controller.js.map +1 -1
- package/backend/dist/src/system-prompts/dto/set-enabled-tools.dto.js +9 -0
- package/backend/dist/src/system-prompts/dto/set-enabled-tools.dto.js.map +1 -1
- package/backend/dist/src/system-prompts/dto/system-prompt.dto.js +43 -0
- package/backend/dist/src/system-prompts/dto/system-prompt.dto.js.map +1 -1
- package/backend/dist/src/system-prompts/dto/toggle-tool.dto.js +5 -0
- package/backend/dist/src/system-prompts/dto/toggle-tool.dto.js.map +1 -1
- package/backend/dist/src/system-prompts/system-prompts.controller.js +80 -0
- package/backend/dist/src/system-prompts/system-prompts.controller.js.map +1 -1
- package/backend/dist/src/tool-hooks/dto/create-tool-hook.dto.js +14 -0
- package/backend/dist/src/tool-hooks/dto/create-tool-hook.dto.js.map +1 -1
- package/backend/dist/src/tool-hooks/dto/update-tool-hook.dto.js +11 -0
- package/backend/dist/src/tool-hooks/dto/update-tool-hook.dto.js.map +1 -1
- package/backend/dist/src/tool-hooks/tool-hooks.controller.js +52 -0
- package/backend/dist/src/tool-hooks/tool-hooks.controller.js.map +1 -1
- package/backend/dist/src/visual-editor/visual-editor.controller.js +15 -0
- package/backend/dist/src/visual-editor/visual-editor.controller.js.map +1 -1
- package/backend/dist/src/workspace/workspace.controller.js +41 -0
- package/backend/dist/src/workspace/workspace.controller.js.map +1 -1
- package/backend/dist/tsconfig.build.tsbuildinfo +1 -1
- package/{daemon/node_modules/undici-types → backend/node_modules/@eslint/eslintrc}/LICENSE +5 -7
- package/backend/node_modules/@eslint/eslintrc/README.md +115 -0
- package/backend/node_modules/@eslint/eslintrc/conf/config-schema.js +79 -0
- package/backend/node_modules/@eslint/eslintrc/conf/environments.js +215 -0
- package/backend/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs +1104 -0
- package/backend/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs.map +1 -0
- package/backend/node_modules/@eslint/eslintrc/dist/eslintrc.cjs +4344 -0
- package/backend/node_modules/@eslint/eslintrc/dist/eslintrc.cjs.map +1 -0
- package/backend/node_modules/@eslint/eslintrc/lib/cascading-config-array-factory.js +532 -0
- package/backend/node_modules/@eslint/eslintrc/lib/config-array/config-array.js +523 -0
- package/backend/node_modules/@eslint/eslintrc/lib/config-array/config-dependency.js +124 -0
- package/backend/node_modules/@eslint/eslintrc/lib/config-array/extracted-config.js +145 -0
- package/backend/node_modules/@eslint/eslintrc/lib/config-array/ignore-pattern.js +238 -0
- package/backend/node_modules/@eslint/eslintrc/lib/config-array/index.js +19 -0
- package/backend/node_modules/@eslint/eslintrc/lib/config-array/override-tester.js +225 -0
- package/backend/node_modules/@eslint/eslintrc/lib/config-array-factory.js +1151 -0
- package/backend/node_modules/@eslint/eslintrc/lib/flat-compat.js +318 -0
- package/backend/node_modules/@eslint/eslintrc/lib/index-universal.js +29 -0
- package/backend/node_modules/@eslint/eslintrc/lib/index.js +56 -0
- package/backend/node_modules/@eslint/eslintrc/lib/shared/ajv.js +191 -0
- package/backend/node_modules/@eslint/eslintrc/lib/shared/config-ops.js +135 -0
- package/backend/node_modules/@eslint/eslintrc/lib/shared/config-validator.js +325 -0
- package/backend/node_modules/@eslint/eslintrc/lib/shared/deprecation-warnings.js +63 -0
- package/backend/node_modules/@eslint/eslintrc/lib/shared/naming.js +96 -0
- package/backend/node_modules/@eslint/eslintrc/lib/shared/relative-module-resolver.js +42 -0
- package/backend/node_modules/@eslint/eslintrc/lib/shared/types.js +149 -0
- package/backend/node_modules/@eslint/eslintrc/package.json +82 -0
- package/backend/node_modules/@eslint/eslintrc/universal.js +9 -0
- package/backend/package.json +2 -4
- package/daemon/dist/api/system.js +25 -0
- package/daemon/dist/daemon.blob +0 -0
- package/daemon/dist/index.js +0 -0
- package/package.json +3 -1
- package/visual-editor-proxy/.repoburg/data.sqlite +0 -0
- package/visual-editor-proxy/dist/tsconfig.tsbuildinfo +1 -1
- package/backend/node_modules/@types/node/LICENSE +0 -21
- package/backend/node_modules/@types/node/README.md +0 -15
- package/backend/node_modules/@types/node/assert/strict.d.ts +0 -8
- package/backend/node_modules/@types/node/assert.d.ts +0 -1044
- package/backend/node_modules/@types/node/async_hooks.d.ts +0 -605
- package/backend/node_modules/@types/node/buffer.buffer.d.ts +0 -462
- package/backend/node_modules/@types/node/buffer.d.ts +0 -1932
- package/backend/node_modules/@types/node/child_process.d.ts +0 -1452
- package/backend/node_modules/@types/node/cluster.d.ts +0 -578
- package/backend/node_modules/@types/node/compatibility/disposable.d.ts +0 -16
- package/backend/node_modules/@types/node/compatibility/index.d.ts +0 -9
- package/backend/node_modules/@types/node/compatibility/indexable.d.ts +0 -20
- package/backend/node_modules/@types/node/compatibility/iterators.d.ts +0 -21
- package/backend/node_modules/@types/node/console.d.ts +0 -452
- package/backend/node_modules/@types/node/constants.d.ts +0 -21
- package/backend/node_modules/@types/node/crypto.d.ts +0 -4570
- package/backend/node_modules/@types/node/dgram.d.ts +0 -596
- package/backend/node_modules/@types/node/diagnostics_channel.d.ts +0 -578
- package/backend/node_modules/@types/node/dns/promises.d.ts +0 -479
- package/backend/node_modules/@types/node/dns.d.ts +0 -871
- package/backend/node_modules/@types/node/domain.d.ts +0 -170
- package/backend/node_modules/@types/node/events.d.ts +0 -931
- package/backend/node_modules/@types/node/fs/promises.d.ts +0 -1248
- package/backend/node_modules/@types/node/fs.d.ts +0 -4362
- package/backend/node_modules/@types/node/globals.d.ts +0 -170
- package/backend/node_modules/@types/node/globals.typedarray.d.ts +0 -21
- package/backend/node_modules/@types/node/http.d.ts +0 -2031
- package/backend/node_modules/@types/node/http2.d.ts +0 -2623
- package/backend/node_modules/@types/node/https.d.ts +0 -549
- package/backend/node_modules/@types/node/index.d.ts +0 -93
- package/backend/node_modules/@types/node/inspector.generated.d.ts +0 -3966
- package/backend/node_modules/@types/node/module.d.ts +0 -539
- package/backend/node_modules/@types/node/net.d.ts +0 -1011
- package/backend/node_modules/@types/node/os.d.ts +0 -495
- package/backend/node_modules/@types/node/package.json +0 -140
- package/backend/node_modules/@types/node/path.d.ts +0 -200
- package/backend/node_modules/@types/node/perf_hooks.d.ts +0 -963
- package/backend/node_modules/@types/node/process.d.ts +0 -1956
- package/backend/node_modules/@types/node/punycode.d.ts +0 -117
- package/backend/node_modules/@types/node/querystring.d.ts +0 -152
- package/backend/node_modules/@types/node/readline/promises.d.ts +0 -162
- package/backend/node_modules/@types/node/readline.d.ts +0 -589
- package/backend/node_modules/@types/node/repl.d.ts +0 -430
- package/backend/node_modules/@types/node/sea.d.ts +0 -153
- package/backend/node_modules/@types/node/stream/consumers.d.ts +0 -38
- package/backend/node_modules/@types/node/stream/promises.d.ts +0 -90
- package/backend/node_modules/@types/node/stream/web.d.ts +0 -533
- package/backend/node_modules/@types/node/stream.d.ts +0 -1668
- package/backend/node_modules/@types/node/string_decoder.d.ts +0 -67
- package/backend/node_modules/@types/node/test.d.ts +0 -1807
- package/backend/node_modules/@types/node/timers/promises.d.ts +0 -108
- package/backend/node_modules/@types/node/timers.d.ts +0 -286
- package/backend/node_modules/@types/node/tls.d.ts +0 -1231
- package/backend/node_modules/@types/node/trace_events.d.ts +0 -197
- package/backend/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +0 -460
- package/backend/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +0 -19
- package/backend/node_modules/@types/node/ts5.6/index.d.ts +0 -93
- package/backend/node_modules/@types/node/tty.d.ts +0 -208
- package/backend/node_modules/@types/node/url.d.ts +0 -964
- package/backend/node_modules/@types/node/util.d.ts +0 -2331
- package/backend/node_modules/@types/node/v8.d.ts +0 -808
- package/backend/node_modules/@types/node/vm.d.ts +0 -1030
- package/backend/node_modules/@types/node/wasi.d.ts +0 -181
- package/backend/node_modules/@types/node/web-globals/abortcontroller.d.ts +0 -34
- package/backend/node_modules/@types/node/web-globals/domexception.d.ts +0 -68
- package/backend/node_modules/@types/node/web-globals/events.d.ts +0 -94
- package/backend/node_modules/@types/node/web-globals/fetch.d.ts +0 -46
- package/backend/node_modules/@types/node/worker_threads.d.ts +0 -743
- package/backend/node_modules/@types/node/zlib.d.ts +0 -539
- package/backend/node_modules/debug/LICENSE +0 -20
- package/backend/node_modules/debug/README.md +0 -481
- package/backend/node_modules/debug/package.json +0 -64
- package/backend/node_modules/debug/src/browser.js +0 -272
- package/backend/node_modules/debug/src/common.js +0 -292
- package/backend/node_modules/debug/src/index.js +0 -10
- package/backend/node_modules/debug/src/node.js +0 -263
- package/backend/node_modules/undici-types/LICENSE +0 -21
- package/backend/node_modules/undici-types/README.md +0 -6
- package/backend/node_modules/undici-types/agent.d.ts +0 -31
- package/backend/node_modules/undici-types/api.d.ts +0 -43
- package/backend/node_modules/undici-types/balanced-pool.d.ts +0 -29
- package/backend/node_modules/undici-types/cache.d.ts +0 -36
- package/backend/node_modules/undici-types/client.d.ts +0 -108
- package/backend/node_modules/undici-types/connector.d.ts +0 -34
- package/backend/node_modules/undici-types/content-type.d.ts +0 -21
- package/backend/node_modules/undici-types/cookies.d.ts +0 -28
- package/backend/node_modules/undici-types/diagnostics-channel.d.ts +0 -66
- package/backend/node_modules/undici-types/dispatcher.d.ts +0 -256
- package/backend/node_modules/undici-types/env-http-proxy-agent.d.ts +0 -21
- package/backend/node_modules/undici-types/errors.d.ts +0 -149
- package/backend/node_modules/undici-types/eventsource.d.ts +0 -61
- package/backend/node_modules/undici-types/fetch.d.ts +0 -209
- package/backend/node_modules/undici-types/file.d.ts +0 -39
- package/backend/node_modules/undici-types/filereader.d.ts +0 -54
- package/backend/node_modules/undici-types/formdata.d.ts +0 -108
- package/backend/node_modules/undici-types/global-dispatcher.d.ts +0 -9
- package/backend/node_modules/undici-types/global-origin.d.ts +0 -7
- package/backend/node_modules/undici-types/handlers.d.ts +0 -15
- package/backend/node_modules/undici-types/header.d.ts +0 -4
- package/backend/node_modules/undici-types/index.d.ts +0 -71
- package/backend/node_modules/undici-types/interceptors.d.ts +0 -17
- package/backend/node_modules/undici-types/mock-agent.d.ts +0 -50
- package/backend/node_modules/undici-types/mock-client.d.ts +0 -25
- package/backend/node_modules/undici-types/mock-errors.d.ts +0 -12
- package/backend/node_modules/undici-types/mock-interceptor.d.ts +0 -93
- package/backend/node_modules/undici-types/mock-pool.d.ts +0 -25
- package/backend/node_modules/undici-types/package.json +0 -55
- package/backend/node_modules/undici-types/patch.d.ts +0 -33
- package/backend/node_modules/undici-types/pool-stats.d.ts +0 -19
- package/backend/node_modules/undici-types/pool.d.ts +0 -39
- package/backend/node_modules/undici-types/proxy-agent.d.ts +0 -28
- package/backend/node_modules/undici-types/readable.d.ts +0 -65
- package/backend/node_modules/undici-types/retry-agent.d.ts +0 -8
- package/backend/node_modules/undici-types/retry-handler.d.ts +0 -116
- package/backend/node_modules/undici-types/util.d.ts +0 -18
- package/backend/node_modules/undici-types/webidl.d.ts +0 -228
- package/backend/node_modules/undici-types/websocket.d.ts +0 -150
- package/daemon/node_modules/@types/node/LICENSE +0 -21
- package/daemon/node_modules/@types/node/README.md +0 -15
- package/daemon/node_modules/@types/node/assert/strict.d.ts +0 -8
- package/daemon/node_modules/@types/node/assert.d.ts +0 -1044
- package/daemon/node_modules/@types/node/async_hooks.d.ts +0 -605
- package/daemon/node_modules/@types/node/buffer.buffer.d.ts +0 -462
- package/daemon/node_modules/@types/node/buffer.d.ts +0 -1932
- package/daemon/node_modules/@types/node/child_process.d.ts +0 -1452
- package/daemon/node_modules/@types/node/cluster.d.ts +0 -578
- package/daemon/node_modules/@types/node/compatibility/disposable.d.ts +0 -16
- package/daemon/node_modules/@types/node/compatibility/index.d.ts +0 -9
- package/daemon/node_modules/@types/node/compatibility/indexable.d.ts +0 -20
- package/daemon/node_modules/@types/node/compatibility/iterators.d.ts +0 -21
- package/daemon/node_modules/@types/node/console.d.ts +0 -452
- package/daemon/node_modules/@types/node/constants.d.ts +0 -21
- package/daemon/node_modules/@types/node/crypto.d.ts +0 -4570
- package/daemon/node_modules/@types/node/dgram.d.ts +0 -596
- package/daemon/node_modules/@types/node/diagnostics_channel.d.ts +0 -578
- package/daemon/node_modules/@types/node/dns/promises.d.ts +0 -479
- package/daemon/node_modules/@types/node/dns.d.ts +0 -871
- package/daemon/node_modules/@types/node/domain.d.ts +0 -170
- package/daemon/node_modules/@types/node/events.d.ts +0 -931
- package/daemon/node_modules/@types/node/fs/promises.d.ts +0 -1248
- package/daemon/node_modules/@types/node/fs.d.ts +0 -4362
- package/daemon/node_modules/@types/node/globals.d.ts +0 -170
- package/daemon/node_modules/@types/node/globals.typedarray.d.ts +0 -21
- package/daemon/node_modules/@types/node/http.d.ts +0 -2031
- package/daemon/node_modules/@types/node/http2.d.ts +0 -2623
- package/daemon/node_modules/@types/node/https.d.ts +0 -549
- package/daemon/node_modules/@types/node/index.d.ts +0 -93
- package/daemon/node_modules/@types/node/inspector.generated.d.ts +0 -3966
- package/daemon/node_modules/@types/node/module.d.ts +0 -539
- package/daemon/node_modules/@types/node/net.d.ts +0 -1011
- package/daemon/node_modules/@types/node/os.d.ts +0 -495
- package/daemon/node_modules/@types/node/package.json +0 -140
- package/daemon/node_modules/@types/node/path.d.ts +0 -200
- package/daemon/node_modules/@types/node/perf_hooks.d.ts +0 -963
- package/daemon/node_modules/@types/node/process.d.ts +0 -1956
- package/daemon/node_modules/@types/node/punycode.d.ts +0 -117
- package/daemon/node_modules/@types/node/querystring.d.ts +0 -152
- package/daemon/node_modules/@types/node/readline/promises.d.ts +0 -162
- package/daemon/node_modules/@types/node/readline.d.ts +0 -589
- package/daemon/node_modules/@types/node/repl.d.ts +0 -430
- package/daemon/node_modules/@types/node/sea.d.ts +0 -153
- package/daemon/node_modules/@types/node/stream/consumers.d.ts +0 -38
- package/daemon/node_modules/@types/node/stream/promises.d.ts +0 -90
- package/daemon/node_modules/@types/node/stream/web.d.ts +0 -533
- package/daemon/node_modules/@types/node/stream.d.ts +0 -1668
- package/daemon/node_modules/@types/node/string_decoder.d.ts +0 -67
- package/daemon/node_modules/@types/node/test.d.ts +0 -1807
- package/daemon/node_modules/@types/node/timers/promises.d.ts +0 -108
- package/daemon/node_modules/@types/node/timers.d.ts +0 -286
- package/daemon/node_modules/@types/node/tls.d.ts +0 -1231
- package/daemon/node_modules/@types/node/trace_events.d.ts +0 -197
- package/daemon/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +0 -460
- package/daemon/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +0 -19
- package/daemon/node_modules/@types/node/ts5.6/index.d.ts +0 -93
- package/daemon/node_modules/@types/node/tty.d.ts +0 -208
- package/daemon/node_modules/@types/node/url.d.ts +0 -964
- package/daemon/node_modules/@types/node/util.d.ts +0 -2331
- package/daemon/node_modules/@types/node/v8.d.ts +0 -808
- package/daemon/node_modules/@types/node/vm.d.ts +0 -1030
- package/daemon/node_modules/@types/node/wasi.d.ts +0 -181
- package/daemon/node_modules/@types/node/web-globals/abortcontroller.d.ts +0 -34
- package/daemon/node_modules/@types/node/web-globals/domexception.d.ts +0 -68
- package/daemon/node_modules/@types/node/web-globals/events.d.ts +0 -94
- package/daemon/node_modules/@types/node/web-globals/fetch.d.ts +0 -46
- package/daemon/node_modules/@types/node/worker_threads.d.ts +0 -743
- package/daemon/node_modules/@types/node/zlib.d.ts +0 -539
- package/daemon/node_modules/undici-types/README.md +0 -6
- package/daemon/node_modules/undici-types/agent.d.ts +0 -31
- package/daemon/node_modules/undici-types/api.d.ts +0 -43
- package/daemon/node_modules/undici-types/balanced-pool.d.ts +0 -29
- package/daemon/node_modules/undici-types/cache.d.ts +0 -36
- package/daemon/node_modules/undici-types/client.d.ts +0 -108
- package/daemon/node_modules/undici-types/connector.d.ts +0 -34
- package/daemon/node_modules/undici-types/content-type.d.ts +0 -21
- package/daemon/node_modules/undici-types/cookies.d.ts +0 -28
- package/daemon/node_modules/undici-types/diagnostics-channel.d.ts +0 -66
- package/daemon/node_modules/undici-types/dispatcher.d.ts +0 -256
- package/daemon/node_modules/undici-types/env-http-proxy-agent.d.ts +0 -21
- package/daemon/node_modules/undici-types/errors.d.ts +0 -149
- package/daemon/node_modules/undici-types/eventsource.d.ts +0 -61
- package/daemon/node_modules/undici-types/fetch.d.ts +0 -209
- package/daemon/node_modules/undici-types/file.d.ts +0 -39
- package/daemon/node_modules/undici-types/filereader.d.ts +0 -54
- package/daemon/node_modules/undici-types/formdata.d.ts +0 -108
- package/daemon/node_modules/undici-types/global-dispatcher.d.ts +0 -9
- package/daemon/node_modules/undici-types/global-origin.d.ts +0 -7
- package/daemon/node_modules/undici-types/handlers.d.ts +0 -15
- package/daemon/node_modules/undici-types/header.d.ts +0 -4
- package/daemon/node_modules/undici-types/index.d.ts +0 -71
- package/daemon/node_modules/undici-types/interceptors.d.ts +0 -17
- package/daemon/node_modules/undici-types/mock-agent.d.ts +0 -50
- package/daemon/node_modules/undici-types/mock-client.d.ts +0 -25
- package/daemon/node_modules/undici-types/mock-errors.d.ts +0 -12
- package/daemon/node_modules/undici-types/mock-interceptor.d.ts +0 -93
- package/daemon/node_modules/undici-types/mock-pool.d.ts +0 -25
- package/daemon/node_modules/undici-types/package.json +0 -55
- package/daemon/node_modules/undici-types/patch.d.ts +0 -33
- package/daemon/node_modules/undici-types/pool-stats.d.ts +0 -19
- package/daemon/node_modules/undici-types/pool.d.ts +0 -39
- package/daemon/node_modules/undici-types/proxy-agent.d.ts +0 -28
- package/daemon/node_modules/undici-types/readable.d.ts +0 -65
- package/daemon/node_modules/undici-types/retry-agent.d.ts +0 -8
- package/daemon/node_modules/undici-types/retry-handler.d.ts +0 -116
- package/daemon/node_modules/undici-types/util.d.ts +0 -18
- package/daemon/node_modules/undici-types/webidl.d.ts +0 -228
- package/daemon/node_modules/undici-types/websocket.d.ts +0 -150
- package/visual-editor-proxy/node_modules/@types/node/LICENSE +0 -21
- package/visual-editor-proxy/node_modules/@types/node/README.md +0 -15
- package/visual-editor-proxy/node_modules/@types/node/assert/strict.d.ts +0 -8
- package/visual-editor-proxy/node_modules/@types/node/assert.d.ts +0 -1062
- package/visual-editor-proxy/node_modules/@types/node/async_hooks.d.ts +0 -605
- package/visual-editor-proxy/node_modules/@types/node/buffer.buffer.d.ts +0 -462
- package/visual-editor-proxy/node_modules/@types/node/buffer.d.ts +0 -1932
- package/visual-editor-proxy/node_modules/@types/node/child_process.d.ts +0 -1458
- package/visual-editor-proxy/node_modules/@types/node/cluster.d.ts +0 -577
- package/visual-editor-proxy/node_modules/@types/node/compatibility/disposable.d.ts +0 -16
- package/visual-editor-proxy/node_modules/@types/node/compatibility/index.d.ts +0 -9
- package/visual-editor-proxy/node_modules/@types/node/compatibility/indexable.d.ts +0 -20
- package/visual-editor-proxy/node_modules/@types/node/compatibility/iterators.d.ts +0 -21
- package/visual-editor-proxy/node_modules/@types/node/console.d.ts +0 -452
- package/visual-editor-proxy/node_modules/@types/node/constants.d.ts +0 -21
- package/visual-editor-proxy/node_modules/@types/node/crypto.d.ts +0 -4570
- package/visual-editor-proxy/node_modules/@types/node/dgram.d.ts +0 -596
- package/visual-editor-proxy/node_modules/@types/node/diagnostics_channel.d.ts +0 -578
- package/visual-editor-proxy/node_modules/@types/node/dns/promises.d.ts +0 -479
- package/visual-editor-proxy/node_modules/@types/node/dns.d.ts +0 -871
- package/visual-editor-proxy/node_modules/@types/node/domain.d.ts +0 -170
- package/visual-editor-proxy/node_modules/@types/node/events.d.ts +0 -977
- package/visual-editor-proxy/node_modules/@types/node/fs/promises.d.ts +0 -1248
- package/visual-editor-proxy/node_modules/@types/node/fs.d.ts +0 -4362
- package/visual-editor-proxy/node_modules/@types/node/globals.d.ts +0 -172
- package/visual-editor-proxy/node_modules/@types/node/globals.typedarray.d.ts +0 -21
- package/visual-editor-proxy/node_modules/@types/node/http.d.ts +0 -2030
- package/visual-editor-proxy/node_modules/@types/node/http2.d.ts +0 -2624
- package/visual-editor-proxy/node_modules/@types/node/https.d.ts +0 -546
- package/visual-editor-proxy/node_modules/@types/node/index.d.ts +0 -93
- package/visual-editor-proxy/node_modules/@types/node/inspector.generated.d.ts +0 -3966
- package/visual-editor-proxy/node_modules/@types/node/module.d.ts +0 -539
- package/visual-editor-proxy/node_modules/@types/node/net.d.ts +0 -1011
- package/visual-editor-proxy/node_modules/@types/node/os.d.ts +0 -505
- package/visual-editor-proxy/node_modules/@types/node/package.json +0 -140
- package/visual-editor-proxy/node_modules/@types/node/path.d.ts +0 -200
- package/visual-editor-proxy/node_modules/@types/node/perf_hooks.d.ts +0 -961
- package/visual-editor-proxy/node_modules/@types/node/process.d.ts +0 -1944
- package/visual-editor-proxy/node_modules/@types/node/punycode.d.ts +0 -117
- package/visual-editor-proxy/node_modules/@types/node/querystring.d.ts +0 -152
- package/visual-editor-proxy/node_modules/@types/node/readline/promises.d.ts +0 -162
- package/visual-editor-proxy/node_modules/@types/node/readline.d.ts +0 -589
- package/visual-editor-proxy/node_modules/@types/node/repl.d.ts +0 -430
- package/visual-editor-proxy/node_modules/@types/node/sea.d.ts +0 -153
- package/visual-editor-proxy/node_modules/@types/node/stream/consumers.d.ts +0 -38
- package/visual-editor-proxy/node_modules/@types/node/stream/promises.d.ts +0 -90
- package/visual-editor-proxy/node_modules/@types/node/stream/web.d.ts +0 -533
- package/visual-editor-proxy/node_modules/@types/node/stream.d.ts +0 -1675
- package/visual-editor-proxy/node_modules/@types/node/string_decoder.d.ts +0 -67
- package/visual-editor-proxy/node_modules/@types/node/test.d.ts +0 -1787
- package/visual-editor-proxy/node_modules/@types/node/timers/promises.d.ts +0 -108
- package/visual-editor-proxy/node_modules/@types/node/timers.d.ts +0 -286
- package/visual-editor-proxy/node_modules/@types/node/tls.d.ts +0 -1231
- package/visual-editor-proxy/node_modules/@types/node/trace_events.d.ts +0 -197
- package/visual-editor-proxy/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +0 -460
- package/visual-editor-proxy/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +0 -19
- package/visual-editor-proxy/node_modules/@types/node/ts5.6/index.d.ts +0 -93
- package/visual-editor-proxy/node_modules/@types/node/tty.d.ts +0 -208
- package/visual-editor-proxy/node_modules/@types/node/url.d.ts +0 -964
- package/visual-editor-proxy/node_modules/@types/node/util.d.ts +0 -2331
- package/visual-editor-proxy/node_modules/@types/node/v8.d.ts +0 -808
- package/visual-editor-proxy/node_modules/@types/node/vm.d.ts +0 -1000
- package/visual-editor-proxy/node_modules/@types/node/wasi.d.ts +0 -181
- package/visual-editor-proxy/node_modules/@types/node/web-globals/abortcontroller.d.ts +0 -34
- package/visual-editor-proxy/node_modules/@types/node/web-globals/domexception.d.ts +0 -68
- package/visual-editor-proxy/node_modules/@types/node/web-globals/events.d.ts +0 -97
- package/visual-editor-proxy/node_modules/@types/node/web-globals/fetch.d.ts +0 -46
- package/visual-editor-proxy/node_modules/@types/node/worker_threads.d.ts +0 -715
- package/visual-editor-proxy/node_modules/@types/node/zlib.d.ts +0 -539
- package/visual-editor-proxy/node_modules/undici-types/LICENSE +0 -21
- package/visual-editor-proxy/node_modules/undici-types/README.md +0 -6
- package/visual-editor-proxy/node_modules/undici-types/agent.d.ts +0 -31
- package/visual-editor-proxy/node_modules/undici-types/api.d.ts +0 -43
- package/visual-editor-proxy/node_modules/undici-types/balanced-pool.d.ts +0 -29
- package/visual-editor-proxy/node_modules/undici-types/cache.d.ts +0 -36
- package/visual-editor-proxy/node_modules/undici-types/client.d.ts +0 -108
- package/visual-editor-proxy/node_modules/undici-types/connector.d.ts +0 -34
- package/visual-editor-proxy/node_modules/undici-types/content-type.d.ts +0 -21
- package/visual-editor-proxy/node_modules/undici-types/cookies.d.ts +0 -28
- package/visual-editor-proxy/node_modules/undici-types/diagnostics-channel.d.ts +0 -66
- package/visual-editor-proxy/node_modules/undici-types/dispatcher.d.ts +0 -256
- package/visual-editor-proxy/node_modules/undici-types/env-http-proxy-agent.d.ts +0 -21
- package/visual-editor-proxy/node_modules/undici-types/errors.d.ts +0 -149
- package/visual-editor-proxy/node_modules/undici-types/eventsource.d.ts +0 -61
- package/visual-editor-proxy/node_modules/undici-types/fetch.d.ts +0 -209
- package/visual-editor-proxy/node_modules/undici-types/file.d.ts +0 -39
- package/visual-editor-proxy/node_modules/undici-types/filereader.d.ts +0 -54
- package/visual-editor-proxy/node_modules/undici-types/formdata.d.ts +0 -108
- package/visual-editor-proxy/node_modules/undici-types/global-dispatcher.d.ts +0 -9
- package/visual-editor-proxy/node_modules/undici-types/global-origin.d.ts +0 -7
- package/visual-editor-proxy/node_modules/undici-types/handlers.d.ts +0 -15
- package/visual-editor-proxy/node_modules/undici-types/header.d.ts +0 -4
- package/visual-editor-proxy/node_modules/undici-types/index.d.ts +0 -71
- package/visual-editor-proxy/node_modules/undici-types/interceptors.d.ts +0 -17
- package/visual-editor-proxy/node_modules/undici-types/mock-agent.d.ts +0 -50
- package/visual-editor-proxy/node_modules/undici-types/mock-client.d.ts +0 -25
- package/visual-editor-proxy/node_modules/undici-types/mock-errors.d.ts +0 -12
- package/visual-editor-proxy/node_modules/undici-types/mock-interceptor.d.ts +0 -93
- package/visual-editor-proxy/node_modules/undici-types/mock-pool.d.ts +0 -25
- package/visual-editor-proxy/node_modules/undici-types/package.json +0 -55
- package/visual-editor-proxy/node_modules/undici-types/patch.d.ts +0 -33
- package/visual-editor-proxy/node_modules/undici-types/pool-stats.d.ts +0 -19
- package/visual-editor-proxy/node_modules/undici-types/pool.d.ts +0 -39
- package/visual-editor-proxy/node_modules/undici-types/proxy-agent.d.ts +0 -28
- package/visual-editor-proxy/node_modules/undici-types/readable.d.ts +0 -65
- package/visual-editor-proxy/node_modules/undici-types/retry-agent.d.ts +0 -8
- package/visual-editor-proxy/node_modules/undici-types/retry-handler.d.ts +0 -116
- package/visual-editor-proxy/node_modules/undici-types/util.d.ts +0 -18
- package/visual-editor-proxy/node_modules/undici-types/webidl.d.ts +0 -228
- package/visual-editor-proxy/node_modules/undici-types/websocket.d.ts +0 -150
|
@@ -0,0 +1,318 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview Compatibility class for flat config.
|
|
3
|
+
* @author Nicholas C. Zakas
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
//-----------------------------------------------------------------------------
|
|
7
|
+
// Requirements
|
|
8
|
+
//-----------------------------------------------------------------------------
|
|
9
|
+
|
|
10
|
+
import createDebug from "debug";
|
|
11
|
+
import path from "path";
|
|
12
|
+
|
|
13
|
+
import environments from "../conf/environments.js";
|
|
14
|
+
import { ConfigArrayFactory } from "./config-array-factory.js";
|
|
15
|
+
|
|
16
|
+
//-----------------------------------------------------------------------------
|
|
17
|
+
// Helpers
|
|
18
|
+
//-----------------------------------------------------------------------------
|
|
19
|
+
|
|
20
|
+
/** @typedef {import("../../shared/types").Environment} Environment */
|
|
21
|
+
/** @typedef {import("../../shared/types").Processor} Processor */
|
|
22
|
+
|
|
23
|
+
const debug = createDebug("eslintrc:flat-compat");
|
|
24
|
+
const cafactory = Symbol("cafactory");
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* Translates an ESLintRC-style config object into a flag-config-style config
|
|
28
|
+
* object.
|
|
29
|
+
* @param {Object} eslintrcConfig An ESLintRC-style config object.
|
|
30
|
+
* @param {Object} options Options to help translate the config.
|
|
31
|
+
* @param {string} options.resolveConfigRelativeTo To the directory to resolve
|
|
32
|
+
* configs from.
|
|
33
|
+
* @param {string} options.resolvePluginsRelativeTo The directory to resolve
|
|
34
|
+
* plugins from.
|
|
35
|
+
* @param {ReadOnlyMap<string,Environment>} options.pluginEnvironments A map of plugin environment
|
|
36
|
+
* names to objects.
|
|
37
|
+
* @param {ReadOnlyMap<string,Processor>} options.pluginProcessors A map of plugin processor
|
|
38
|
+
* names to objects.
|
|
39
|
+
* @returns {Object} A flag-config-style config object.
|
|
40
|
+
*/
|
|
41
|
+
function translateESLintRC(eslintrcConfig, {
|
|
42
|
+
resolveConfigRelativeTo,
|
|
43
|
+
resolvePluginsRelativeTo,
|
|
44
|
+
pluginEnvironments,
|
|
45
|
+
pluginProcessors
|
|
46
|
+
}) {
|
|
47
|
+
|
|
48
|
+
const flatConfig = {};
|
|
49
|
+
const configs = [];
|
|
50
|
+
const languageOptions = {};
|
|
51
|
+
const linterOptions = {};
|
|
52
|
+
const keysToCopy = ["settings", "rules", "processor"];
|
|
53
|
+
const languageOptionsKeysToCopy = ["globals", "parser", "parserOptions"];
|
|
54
|
+
const linterOptionsKeysToCopy = ["noInlineConfig", "reportUnusedDisableDirectives"];
|
|
55
|
+
|
|
56
|
+
// copy over simple translations
|
|
57
|
+
for (const key of keysToCopy) {
|
|
58
|
+
if (key in eslintrcConfig && typeof eslintrcConfig[key] !== "undefined") {
|
|
59
|
+
flatConfig[key] = eslintrcConfig[key];
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
// copy over languageOptions
|
|
64
|
+
for (const key of languageOptionsKeysToCopy) {
|
|
65
|
+
if (key in eslintrcConfig && typeof eslintrcConfig[key] !== "undefined") {
|
|
66
|
+
|
|
67
|
+
// create the languageOptions key in the flat config
|
|
68
|
+
flatConfig.languageOptions = languageOptions;
|
|
69
|
+
|
|
70
|
+
if (key === "parser") {
|
|
71
|
+
debug(`Resolving parser '${languageOptions[key]}' relative to ${resolveConfigRelativeTo}`);
|
|
72
|
+
|
|
73
|
+
if (eslintrcConfig[key].error) {
|
|
74
|
+
throw eslintrcConfig[key].error;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
languageOptions[key] = eslintrcConfig[key].definition;
|
|
78
|
+
continue;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
// clone any object values that are in the eslintrc config
|
|
82
|
+
if (eslintrcConfig[key] && typeof eslintrcConfig[key] === "object") {
|
|
83
|
+
languageOptions[key] = {
|
|
84
|
+
...eslintrcConfig[key]
|
|
85
|
+
};
|
|
86
|
+
} else {
|
|
87
|
+
languageOptions[key] = eslintrcConfig[key];
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
// copy over linterOptions
|
|
93
|
+
for (const key of linterOptionsKeysToCopy) {
|
|
94
|
+
if (key in eslintrcConfig && typeof eslintrcConfig[key] !== "undefined") {
|
|
95
|
+
flatConfig.linterOptions = linterOptions;
|
|
96
|
+
linterOptions[key] = eslintrcConfig[key];
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
// move ecmaVersion a level up
|
|
101
|
+
if (languageOptions.parserOptions) {
|
|
102
|
+
|
|
103
|
+
if ("ecmaVersion" in languageOptions.parserOptions) {
|
|
104
|
+
languageOptions.ecmaVersion = languageOptions.parserOptions.ecmaVersion;
|
|
105
|
+
delete languageOptions.parserOptions.ecmaVersion;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
if ("sourceType" in languageOptions.parserOptions) {
|
|
109
|
+
languageOptions.sourceType = languageOptions.parserOptions.sourceType;
|
|
110
|
+
delete languageOptions.parserOptions.sourceType;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
// check to see if we even need parserOptions anymore and remove it if not
|
|
114
|
+
if (Object.keys(languageOptions.parserOptions).length === 0) {
|
|
115
|
+
delete languageOptions.parserOptions;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
// overrides
|
|
120
|
+
if (eslintrcConfig.criteria) {
|
|
121
|
+
flatConfig.files = [absoluteFilePath => eslintrcConfig.criteria.test(absoluteFilePath)];
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
// translate plugins
|
|
125
|
+
if (eslintrcConfig.plugins && typeof eslintrcConfig.plugins === "object") {
|
|
126
|
+
debug(`Translating plugins: ${eslintrcConfig.plugins}`);
|
|
127
|
+
|
|
128
|
+
flatConfig.plugins = {};
|
|
129
|
+
|
|
130
|
+
for (const pluginName of Object.keys(eslintrcConfig.plugins)) {
|
|
131
|
+
|
|
132
|
+
debug(`Translating plugin: ${pluginName}`);
|
|
133
|
+
debug(`Resolving plugin '${pluginName} relative to ${resolvePluginsRelativeTo}`);
|
|
134
|
+
|
|
135
|
+
const { original: plugin, error } = eslintrcConfig.plugins[pluginName];
|
|
136
|
+
|
|
137
|
+
if (error) {
|
|
138
|
+
throw error;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
flatConfig.plugins[pluginName] = plugin;
|
|
142
|
+
|
|
143
|
+
// create a config for any processors
|
|
144
|
+
if (plugin.processors) {
|
|
145
|
+
for (const processorName of Object.keys(plugin.processors)) {
|
|
146
|
+
if (processorName.startsWith(".")) {
|
|
147
|
+
debug(`Assigning processor: ${pluginName}/${processorName}`);
|
|
148
|
+
|
|
149
|
+
configs.unshift({
|
|
150
|
+
files: [`**/*${processorName}`],
|
|
151
|
+
processor: pluginProcessors.get(`${pluginName}/${processorName}`)
|
|
152
|
+
});
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
// translate env - must come after plugins
|
|
161
|
+
if (eslintrcConfig.env && typeof eslintrcConfig.env === "object") {
|
|
162
|
+
for (const envName of Object.keys(eslintrcConfig.env)) {
|
|
163
|
+
|
|
164
|
+
// only add environments that are true
|
|
165
|
+
if (eslintrcConfig.env[envName]) {
|
|
166
|
+
debug(`Translating environment: ${envName}`);
|
|
167
|
+
|
|
168
|
+
if (environments.has(envName)) {
|
|
169
|
+
|
|
170
|
+
// built-in environments should be defined first
|
|
171
|
+
configs.unshift(...translateESLintRC({
|
|
172
|
+
criteria: eslintrcConfig.criteria,
|
|
173
|
+
...environments.get(envName)
|
|
174
|
+
}, {
|
|
175
|
+
resolveConfigRelativeTo,
|
|
176
|
+
resolvePluginsRelativeTo
|
|
177
|
+
}));
|
|
178
|
+
} else if (pluginEnvironments.has(envName)) {
|
|
179
|
+
|
|
180
|
+
// if the environment comes from a plugin, it should come after the plugin config
|
|
181
|
+
configs.push(...translateESLintRC({
|
|
182
|
+
criteria: eslintrcConfig.criteria,
|
|
183
|
+
...pluginEnvironments.get(envName)
|
|
184
|
+
}, {
|
|
185
|
+
resolveConfigRelativeTo,
|
|
186
|
+
resolvePluginsRelativeTo
|
|
187
|
+
}));
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
// only add if there are actually keys in the config
|
|
194
|
+
if (Object.keys(flatConfig).length > 0) {
|
|
195
|
+
configs.push(flatConfig);
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
return configs;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
//-----------------------------------------------------------------------------
|
|
203
|
+
// Exports
|
|
204
|
+
//-----------------------------------------------------------------------------
|
|
205
|
+
|
|
206
|
+
/**
|
|
207
|
+
* A compatibility class for working with configs.
|
|
208
|
+
*/
|
|
209
|
+
class FlatCompat {
|
|
210
|
+
|
|
211
|
+
constructor({
|
|
212
|
+
baseDirectory = process.cwd(),
|
|
213
|
+
resolvePluginsRelativeTo = baseDirectory,
|
|
214
|
+
recommendedConfig,
|
|
215
|
+
allConfig
|
|
216
|
+
} = {}) {
|
|
217
|
+
this.baseDirectory = baseDirectory;
|
|
218
|
+
this.resolvePluginsRelativeTo = resolvePluginsRelativeTo;
|
|
219
|
+
this[cafactory] = new ConfigArrayFactory({
|
|
220
|
+
cwd: baseDirectory,
|
|
221
|
+
resolvePluginsRelativeTo,
|
|
222
|
+
getEslintAllConfig: () => {
|
|
223
|
+
|
|
224
|
+
if (!allConfig) {
|
|
225
|
+
throw new TypeError("Missing parameter 'allConfig' in FlatCompat constructor.");
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
return allConfig;
|
|
229
|
+
},
|
|
230
|
+
getEslintRecommendedConfig: () => {
|
|
231
|
+
|
|
232
|
+
if (!recommendedConfig) {
|
|
233
|
+
throw new TypeError("Missing parameter 'recommendedConfig' in FlatCompat constructor.");
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
return recommendedConfig;
|
|
237
|
+
}
|
|
238
|
+
});
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
/**
|
|
242
|
+
* Translates an ESLintRC-style config into a flag-config-style config.
|
|
243
|
+
* @param {Object} eslintrcConfig The ESLintRC-style config object.
|
|
244
|
+
* @returns {Object} A flag-config-style config object.
|
|
245
|
+
*/
|
|
246
|
+
config(eslintrcConfig) {
|
|
247
|
+
const eslintrcArray = this[cafactory].create(eslintrcConfig, {
|
|
248
|
+
basePath: this.baseDirectory
|
|
249
|
+
});
|
|
250
|
+
|
|
251
|
+
const flatArray = [];
|
|
252
|
+
let hasIgnorePatterns = false;
|
|
253
|
+
|
|
254
|
+
eslintrcArray.forEach(configData => {
|
|
255
|
+
if (configData.type === "config") {
|
|
256
|
+
hasIgnorePatterns = hasIgnorePatterns || configData.ignorePattern;
|
|
257
|
+
flatArray.push(...translateESLintRC(configData, {
|
|
258
|
+
resolveConfigRelativeTo: path.join(this.baseDirectory, "__placeholder.js"),
|
|
259
|
+
resolvePluginsRelativeTo: path.join(this.resolvePluginsRelativeTo, "__placeholder.js"),
|
|
260
|
+
pluginEnvironments: eslintrcArray.pluginEnvironments,
|
|
261
|
+
pluginProcessors: eslintrcArray.pluginProcessors
|
|
262
|
+
}));
|
|
263
|
+
}
|
|
264
|
+
});
|
|
265
|
+
|
|
266
|
+
// combine ignorePatterns to emulate ESLintRC behavior better
|
|
267
|
+
if (hasIgnorePatterns) {
|
|
268
|
+
flatArray.unshift({
|
|
269
|
+
ignores: [filePath => {
|
|
270
|
+
|
|
271
|
+
// Compute the final config for this file.
|
|
272
|
+
// This filters config array elements by `files`/`excludedFiles` then merges the elements.
|
|
273
|
+
const finalConfig = eslintrcArray.extractConfig(filePath);
|
|
274
|
+
|
|
275
|
+
// Test the `ignorePattern` properties of the final config.
|
|
276
|
+
return Boolean(finalConfig.ignores) && finalConfig.ignores(filePath);
|
|
277
|
+
}]
|
|
278
|
+
});
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
return flatArray;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
/**
|
|
285
|
+
* Translates the `env` section of an ESLintRC-style config.
|
|
286
|
+
* @param {Object} envConfig The `env` section of an ESLintRC config.
|
|
287
|
+
* @returns {Object[]} An array of flag-config objects representing the environments.
|
|
288
|
+
*/
|
|
289
|
+
env(envConfig) {
|
|
290
|
+
return this.config({
|
|
291
|
+
env: envConfig
|
|
292
|
+
});
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
/**
|
|
296
|
+
* Translates the `extends` section of an ESLintRC-style config.
|
|
297
|
+
* @param {...string} configsToExtend The names of the configs to load.
|
|
298
|
+
* @returns {Object[]} An array of flag-config objects representing the config.
|
|
299
|
+
*/
|
|
300
|
+
extends(...configsToExtend) {
|
|
301
|
+
return this.config({
|
|
302
|
+
extends: configsToExtend
|
|
303
|
+
});
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
/**
|
|
307
|
+
* Translates the `plugins` section of an ESLintRC-style config.
|
|
308
|
+
* @param {...string} plugins The names of the plugins to load.
|
|
309
|
+
* @returns {Object[]} An array of flag-config objects representing the plugins.
|
|
310
|
+
*/
|
|
311
|
+
plugins(...plugins) {
|
|
312
|
+
return this.config({
|
|
313
|
+
plugins
|
|
314
|
+
});
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
export { FlatCompat };
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview Package exports for @eslint/eslintrc
|
|
3
|
+
* @author Nicholas C. Zakas
|
|
4
|
+
*/
|
|
5
|
+
//------------------------------------------------------------------------------
|
|
6
|
+
// Requirements
|
|
7
|
+
//------------------------------------------------------------------------------
|
|
8
|
+
|
|
9
|
+
import * as ConfigOps from "./shared/config-ops.js";
|
|
10
|
+
import ConfigValidator from "./shared/config-validator.js";
|
|
11
|
+
import * as naming from "./shared/naming.js";
|
|
12
|
+
import environments from "../conf/environments.js";
|
|
13
|
+
|
|
14
|
+
//-----------------------------------------------------------------------------
|
|
15
|
+
// Exports
|
|
16
|
+
//-----------------------------------------------------------------------------
|
|
17
|
+
|
|
18
|
+
const Legacy = {
|
|
19
|
+
environments,
|
|
20
|
+
|
|
21
|
+
// shared
|
|
22
|
+
ConfigOps,
|
|
23
|
+
ConfigValidator,
|
|
24
|
+
naming
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
export {
|
|
28
|
+
Legacy
|
|
29
|
+
};
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview Package exports for @eslint/eslintrc
|
|
3
|
+
* @author Nicholas C. Zakas
|
|
4
|
+
*/
|
|
5
|
+
//------------------------------------------------------------------------------
|
|
6
|
+
// Requirements
|
|
7
|
+
//------------------------------------------------------------------------------
|
|
8
|
+
|
|
9
|
+
import {
|
|
10
|
+
ConfigArrayFactory,
|
|
11
|
+
createContext as createConfigArrayFactoryContext
|
|
12
|
+
} from "./config-array-factory.js";
|
|
13
|
+
|
|
14
|
+
import { CascadingConfigArrayFactory } from "./cascading-config-array-factory.js";
|
|
15
|
+
import * as ModuleResolver from "./shared/relative-module-resolver.js";
|
|
16
|
+
import { ConfigArray, getUsedExtractedConfigs } from "./config-array/index.js";
|
|
17
|
+
import { ConfigDependency } from "./config-array/config-dependency.js";
|
|
18
|
+
import { ExtractedConfig } from "./config-array/extracted-config.js";
|
|
19
|
+
import { IgnorePattern } from "./config-array/ignore-pattern.js";
|
|
20
|
+
import { OverrideTester } from "./config-array/override-tester.js";
|
|
21
|
+
import * as ConfigOps from "./shared/config-ops.js";
|
|
22
|
+
import ConfigValidator from "./shared/config-validator.js";
|
|
23
|
+
import * as naming from "./shared/naming.js";
|
|
24
|
+
import { FlatCompat } from "./flat-compat.js";
|
|
25
|
+
import environments from "../conf/environments.js";
|
|
26
|
+
|
|
27
|
+
//-----------------------------------------------------------------------------
|
|
28
|
+
// Exports
|
|
29
|
+
//-----------------------------------------------------------------------------
|
|
30
|
+
|
|
31
|
+
const Legacy = {
|
|
32
|
+
ConfigArray,
|
|
33
|
+
createConfigArrayFactoryContext,
|
|
34
|
+
CascadingConfigArrayFactory,
|
|
35
|
+
ConfigArrayFactory,
|
|
36
|
+
ConfigDependency,
|
|
37
|
+
ExtractedConfig,
|
|
38
|
+
IgnorePattern,
|
|
39
|
+
OverrideTester,
|
|
40
|
+
getUsedExtractedConfigs,
|
|
41
|
+
environments,
|
|
42
|
+
|
|
43
|
+
// shared
|
|
44
|
+
ConfigOps,
|
|
45
|
+
ConfigValidator,
|
|
46
|
+
ModuleResolver,
|
|
47
|
+
naming
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
export {
|
|
51
|
+
|
|
52
|
+
Legacy,
|
|
53
|
+
|
|
54
|
+
FlatCompat
|
|
55
|
+
|
|
56
|
+
};
|
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview The instance of Ajv validator.
|
|
3
|
+
* @author Evgeny Poberezkin
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
//------------------------------------------------------------------------------
|
|
7
|
+
// Requirements
|
|
8
|
+
//------------------------------------------------------------------------------
|
|
9
|
+
|
|
10
|
+
import Ajv from "ajv";
|
|
11
|
+
|
|
12
|
+
//-----------------------------------------------------------------------------
|
|
13
|
+
// Helpers
|
|
14
|
+
//-----------------------------------------------------------------------------
|
|
15
|
+
|
|
16
|
+
/*
|
|
17
|
+
* Copied from ajv/lib/refs/json-schema-draft-04.json
|
|
18
|
+
* The MIT License (MIT)
|
|
19
|
+
* Copyright (c) 2015-2017 Evgeny Poberezkin
|
|
20
|
+
*/
|
|
21
|
+
const metaSchema = {
|
|
22
|
+
id: "http://json-schema.org/draft-04/schema#",
|
|
23
|
+
$schema: "http://json-schema.org/draft-04/schema#",
|
|
24
|
+
description: "Core schema meta-schema",
|
|
25
|
+
definitions: {
|
|
26
|
+
schemaArray: {
|
|
27
|
+
type: "array",
|
|
28
|
+
minItems: 1,
|
|
29
|
+
items: { $ref: "#" }
|
|
30
|
+
},
|
|
31
|
+
positiveInteger: {
|
|
32
|
+
type: "integer",
|
|
33
|
+
minimum: 0
|
|
34
|
+
},
|
|
35
|
+
positiveIntegerDefault0: {
|
|
36
|
+
allOf: [{ $ref: "#/definitions/positiveInteger" }, { default: 0 }]
|
|
37
|
+
},
|
|
38
|
+
simpleTypes: {
|
|
39
|
+
enum: ["array", "boolean", "integer", "null", "number", "object", "string"]
|
|
40
|
+
},
|
|
41
|
+
stringArray: {
|
|
42
|
+
type: "array",
|
|
43
|
+
items: { type: "string" },
|
|
44
|
+
minItems: 1,
|
|
45
|
+
uniqueItems: true
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
type: "object",
|
|
49
|
+
properties: {
|
|
50
|
+
id: {
|
|
51
|
+
type: "string"
|
|
52
|
+
},
|
|
53
|
+
$schema: {
|
|
54
|
+
type: "string"
|
|
55
|
+
},
|
|
56
|
+
title: {
|
|
57
|
+
type: "string"
|
|
58
|
+
},
|
|
59
|
+
description: {
|
|
60
|
+
type: "string"
|
|
61
|
+
},
|
|
62
|
+
default: { },
|
|
63
|
+
multipleOf: {
|
|
64
|
+
type: "number",
|
|
65
|
+
minimum: 0,
|
|
66
|
+
exclusiveMinimum: true
|
|
67
|
+
},
|
|
68
|
+
maximum: {
|
|
69
|
+
type: "number"
|
|
70
|
+
},
|
|
71
|
+
exclusiveMaximum: {
|
|
72
|
+
type: "boolean",
|
|
73
|
+
default: false
|
|
74
|
+
},
|
|
75
|
+
minimum: {
|
|
76
|
+
type: "number"
|
|
77
|
+
},
|
|
78
|
+
exclusiveMinimum: {
|
|
79
|
+
type: "boolean",
|
|
80
|
+
default: false
|
|
81
|
+
},
|
|
82
|
+
maxLength: { $ref: "#/definitions/positiveInteger" },
|
|
83
|
+
minLength: { $ref: "#/definitions/positiveIntegerDefault0" },
|
|
84
|
+
pattern: {
|
|
85
|
+
type: "string",
|
|
86
|
+
format: "regex"
|
|
87
|
+
},
|
|
88
|
+
additionalItems: {
|
|
89
|
+
anyOf: [
|
|
90
|
+
{ type: "boolean" },
|
|
91
|
+
{ $ref: "#" }
|
|
92
|
+
],
|
|
93
|
+
default: { }
|
|
94
|
+
},
|
|
95
|
+
items: {
|
|
96
|
+
anyOf: [
|
|
97
|
+
{ $ref: "#" },
|
|
98
|
+
{ $ref: "#/definitions/schemaArray" }
|
|
99
|
+
],
|
|
100
|
+
default: { }
|
|
101
|
+
},
|
|
102
|
+
maxItems: { $ref: "#/definitions/positiveInteger" },
|
|
103
|
+
minItems: { $ref: "#/definitions/positiveIntegerDefault0" },
|
|
104
|
+
uniqueItems: {
|
|
105
|
+
type: "boolean",
|
|
106
|
+
default: false
|
|
107
|
+
},
|
|
108
|
+
maxProperties: { $ref: "#/definitions/positiveInteger" },
|
|
109
|
+
minProperties: { $ref: "#/definitions/positiveIntegerDefault0" },
|
|
110
|
+
required: { $ref: "#/definitions/stringArray" },
|
|
111
|
+
additionalProperties: {
|
|
112
|
+
anyOf: [
|
|
113
|
+
{ type: "boolean" },
|
|
114
|
+
{ $ref: "#" }
|
|
115
|
+
],
|
|
116
|
+
default: { }
|
|
117
|
+
},
|
|
118
|
+
definitions: {
|
|
119
|
+
type: "object",
|
|
120
|
+
additionalProperties: { $ref: "#" },
|
|
121
|
+
default: { }
|
|
122
|
+
},
|
|
123
|
+
properties: {
|
|
124
|
+
type: "object",
|
|
125
|
+
additionalProperties: { $ref: "#" },
|
|
126
|
+
default: { }
|
|
127
|
+
},
|
|
128
|
+
patternProperties: {
|
|
129
|
+
type: "object",
|
|
130
|
+
additionalProperties: { $ref: "#" },
|
|
131
|
+
default: { }
|
|
132
|
+
},
|
|
133
|
+
dependencies: {
|
|
134
|
+
type: "object",
|
|
135
|
+
additionalProperties: {
|
|
136
|
+
anyOf: [
|
|
137
|
+
{ $ref: "#" },
|
|
138
|
+
{ $ref: "#/definitions/stringArray" }
|
|
139
|
+
]
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
enum: {
|
|
143
|
+
type: "array",
|
|
144
|
+
minItems: 1,
|
|
145
|
+
uniqueItems: true
|
|
146
|
+
},
|
|
147
|
+
type: {
|
|
148
|
+
anyOf: [
|
|
149
|
+
{ $ref: "#/definitions/simpleTypes" },
|
|
150
|
+
{
|
|
151
|
+
type: "array",
|
|
152
|
+
items: { $ref: "#/definitions/simpleTypes" },
|
|
153
|
+
minItems: 1,
|
|
154
|
+
uniqueItems: true
|
|
155
|
+
}
|
|
156
|
+
]
|
|
157
|
+
},
|
|
158
|
+
format: { type: "string" },
|
|
159
|
+
allOf: { $ref: "#/definitions/schemaArray" },
|
|
160
|
+
anyOf: { $ref: "#/definitions/schemaArray" },
|
|
161
|
+
oneOf: { $ref: "#/definitions/schemaArray" },
|
|
162
|
+
not: { $ref: "#" }
|
|
163
|
+
},
|
|
164
|
+
dependencies: {
|
|
165
|
+
exclusiveMaximum: ["maximum"],
|
|
166
|
+
exclusiveMinimum: ["minimum"]
|
|
167
|
+
},
|
|
168
|
+
default: { }
|
|
169
|
+
};
|
|
170
|
+
|
|
171
|
+
//------------------------------------------------------------------------------
|
|
172
|
+
// Public Interface
|
|
173
|
+
//------------------------------------------------------------------------------
|
|
174
|
+
|
|
175
|
+
export default (additionalOptions = {}) => {
|
|
176
|
+
const ajv = new Ajv({
|
|
177
|
+
meta: false,
|
|
178
|
+
useDefaults: true,
|
|
179
|
+
validateSchema: false,
|
|
180
|
+
missingRefs: "ignore",
|
|
181
|
+
verbose: true,
|
|
182
|
+
schemaId: "auto",
|
|
183
|
+
...additionalOptions
|
|
184
|
+
});
|
|
185
|
+
|
|
186
|
+
ajv.addMetaSchema(metaSchema);
|
|
187
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
188
|
+
ajv._opts.defaultMeta = metaSchema.id;
|
|
189
|
+
|
|
190
|
+
return ajv;
|
|
191
|
+
};
|