repoburg 1.0.59 → 1.0.60
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/dist/context-generation/context-generation.service.js +5 -3
- package/backend/dist/context-generation/context-generation.service.js.map +1 -1
- package/backend/dist/tsconfig.build.tsbuildinfo +1 -1
- package/backend/dist/workspace/workspace.service.js +5 -3
- package/backend/dist/workspace/workspace.service.js.map +1 -1
- package/backend/node_modules/@eslint/eslintrc/LICENSE +19 -0
- 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/node_modules/{brace-expansion → @typescript-eslint/scope-manager}/LICENSE +1 -1
- package/backend/node_modules/@typescript-eslint/scope-manager/README.md +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/ID.d.ts +4 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/ID.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/ID.js +21 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/ID.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts +72 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.js +183 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts +56 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/analyze.js +42 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/analyze.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/assert.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/assert.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/assert.js +11 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/assert.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.js +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts +39 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.js +19 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.d.ts +15 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.js +18 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts +11 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.js +15 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/index.js +30 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/index.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/index.d.ts +9 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/index.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/index.js +31 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/index.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.d.ts +16 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.js +23 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.js +23 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.js +15 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.js +75 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.js +1436 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.js +21 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.js +23 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.js +16 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.js +55 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.js +30 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.js +13 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.js +46 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.js +22 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.js +20 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.js +20 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.js +24 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.js +19 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.js +20 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.js +16 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.js +19 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.js +20 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.js +22 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.js +20 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.js +22 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.js +22 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.js +20 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.js +28 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.js +15 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.js +17 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.js +20 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.js +20 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.js +15 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.js +24 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.js +21 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.js +20 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.js +26 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.js +15 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.sharedmemory.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.sharedmemory.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.sharedmemory.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.sharedmemory.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.js +24 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.js +20 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.js +16 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.js +117 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.js +30 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.js +24 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.js +19 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.js +22 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.js +17 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.js +22 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.js +20 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.js +18 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.js +15 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/index.d.ts +93 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/index.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/index.js +189 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/index.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.js +18 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.js +24 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.js +9 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.js +34 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.js +589 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.d.ts +29 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.js +311 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.d.ts +15 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.js +84 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.d.ts +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.js +50 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts +29 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.js +108 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts +89 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.js +107 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts +87 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.js +548 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.d.ts +33 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.js +230 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts +13 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.js +41 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts +22 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.js +80 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts +2 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.js +6 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts +11 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.js +17 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts +13 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.js +36 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts +18 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.js +39 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts +21 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.js +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts +107 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.js +351 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.d.ts +22 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.js +25 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts +11 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.js +22 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts +20 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/index.js +36 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/index.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts +34 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts +25 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.js +19 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.d.ts +18 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.js +33 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts +44 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.js +39 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts +4 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/index.js +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/index.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/package.json +71 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/LICENSE +21 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/README.md +10 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts +4 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.js +7 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/dist/index.js +8 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/dist/index.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts +4 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.js +190 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/package.json +70 -0
- package/backend/node_modules/ansi-styles/index.d.ts +345 -0
- package/backend/node_modules/ansi-styles/index.js +163 -0
- package/backend/node_modules/{strip-ansi → ansi-styles}/package.json +13 -11
- package/backend/node_modules/ansi-styles/readme.md +152 -0
- package/backend/node_modules/ts-api-utils/LICENSE.md +20 -0
- package/backend/node_modules/ts-api-utils/README.md +83 -0
- package/backend/node_modules/ts-api-utils/lib/index.cjs +2307 -0
- package/backend/node_modules/ts-api-utils/lib/index.d.cts +3063 -0
- package/backend/node_modules/ts-api-utils/lib/index.d.ts +3063 -0
- package/backend/node_modules/ts-api-utils/lib/index.js +2106 -0
- package/backend/node_modules/ts-api-utils/package.json +107 -0
- package/backend/node_modules/tsconfig-paths/CHANGELOG.md +407 -0
- package/backend/node_modules/{ms/license.md → tsconfig-paths/LICENSE} +1 -1
- package/backend/node_modules/tsconfig-paths/README.md +269 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/config-loader.test.d.ts +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/config-loader.test.js +87 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/config-loader.test.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/data/match-path-data.d.ts +17 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/data/match-path-data.js +216 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/data/match-path-data.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/filesystem.test.d.ts +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/filesystem.test.js +56 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/filesystem.test.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/mapping-entry.test.d.ts +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/mapping-entry.test.js +39 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/mapping-entry.test.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/match-path-async.test.d.ts +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/match-path-async.test.js +18 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/match-path-async.test.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/match-path-sync.test.d.ts +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/match-path-sync.test.js +14 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/match-path-sync.test.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/try-path.test.d.ts +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/try-path.test.js +124 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/try-path.test.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/tsconfig-loader.test.d.ts +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/tsconfig-loader.test.js +328 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/tsconfig-loader.test.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/config-loader.d.ts +33 -0
- package/backend/node_modules/tsconfig-paths/lib/config-loader.js +48 -0
- package/backend/node_modules/tsconfig-paths/lib/config-loader.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/filesystem.d.ts +34 -0
- package/backend/node_modules/tsconfig-paths/lib/filesystem.js +61 -0
- package/backend/node_modules/tsconfig-paths/lib/filesystem.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/index.d.ts +5 -0
- package/backend/node_modules/tsconfig-paths/lib/index.js +15 -0
- package/backend/node_modules/tsconfig-paths/lib/index.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/mapping-entry.d.ts +18 -0
- package/backend/node_modules/tsconfig-paths/lib/mapping-entry.js +54 -0
- package/backend/node_modules/tsconfig-paths/lib/mapping-entry.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/match-path-async.d.ts +21 -0
- package/backend/node_modules/tsconfig-paths/lib/match-path-async.js +116 -0
- package/backend/node_modules/tsconfig-paths/lib/match-path-async.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/match-path-sync.d.ts +32 -0
- package/backend/node_modules/tsconfig-paths/lib/match-path-sync.js +91 -0
- package/backend/node_modules/tsconfig-paths/lib/match-path-sync.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/register.d.ts +12 -0
- package/backend/node_modules/tsconfig-paths/lib/register.js +112 -0
- package/backend/node_modules/tsconfig-paths/lib/register.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/try-path.d.ts +15 -0
- package/backend/node_modules/tsconfig-paths/lib/try-path.js +91 -0
- package/backend/node_modules/tsconfig-paths/lib/try-path.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts +28 -0
- package/backend/node_modules/tsconfig-paths/lib/tsconfig-loader.js +148 -0
- package/backend/node_modules/tsconfig-paths/lib/tsconfig-loader.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/package.json +74 -0
- package/backend/node_modules/tsconfig-paths/register.js +1 -0
- package/backend/node_modules/tsconfig-paths/src/__tests__/config-loader.test.ts +101 -0
- package/backend/node_modules/tsconfig-paths/src/__tests__/data/match-path-data.ts +230 -0
- package/backend/node_modules/tsconfig-paths/src/__tests__/filesystem.test.ts +57 -0
- package/backend/node_modules/tsconfig-paths/src/__tests__/mapping-entry.test.ts +43 -0
- package/backend/node_modules/tsconfig-paths/src/__tests__/match-path-async.test.ts +26 -0
- package/backend/node_modules/tsconfig-paths/src/__tests__/match-path-sync.test.ts +22 -0
- package/backend/node_modules/tsconfig-paths/src/__tests__/try-path.test.ts +141 -0
- package/backend/node_modules/tsconfig-paths/src/__tests__/tsconfig-loader.test.ts +428 -0
- package/backend/node_modules/tsconfig-paths/src/__tests__/tsconfig-named.json +10 -0
- package/backend/node_modules/tsconfig-paths/src/config-loader.ts +89 -0
- package/backend/node_modules/tsconfig-paths/src/filesystem.ts +93 -0
- package/backend/node_modules/tsconfig-paths/src/index.ts +24 -0
- package/backend/node_modules/tsconfig-paths/src/mapping-entry.ts +65 -0
- package/backend/node_modules/tsconfig-paths/src/match-path-async.ts +223 -0
- package/backend/node_modules/tsconfig-paths/src/match-path-sync.ts +146 -0
- package/backend/node_modules/tsconfig-paths/src/register.ts +123 -0
- package/backend/node_modules/tsconfig-paths/src/try-path.ts +103 -0
- package/backend/node_modules/tsconfig-paths/src/tsconfig-loader.ts +229 -0
- package/package.json +1 -1
- package/backend/node_modules/brace-expansion/README.md +0 -129
- package/backend/node_modules/brace-expansion/index.js +0 -201
- package/backend/node_modules/brace-expansion/package.json +0 -50
- 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/glob-parent/LICENSE +0 -15
- package/backend/node_modules/glob-parent/README.md +0 -134
- package/backend/node_modules/glob-parent/index.js +0 -75
- package/backend/node_modules/glob-parent/package.json +0 -54
- package/backend/node_modules/minimatch/LICENSE +0 -15
- package/backend/node_modules/minimatch/README.md +0 -230
- package/backend/node_modules/minimatch/minimatch.js +0 -947
- package/backend/node_modules/minimatch/package.json +0 -33
- package/backend/node_modules/ms/index.js +0 -162
- package/backend/node_modules/ms/package.json +0 -38
- package/backend/node_modules/ms/readme.md +0 -59
- package/backend/node_modules/strip-ansi/index.d.ts +0 -17
- package/backend/node_modules/strip-ansi/index.js +0 -4
- package/backend/node_modules/strip-ansi/readme.md +0 -46
- /package/backend/node_modules/{strip-ansi → ansi-styles}/license +0 -0
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview `ExtractedConfig` class.
|
|
3
|
+
*
|
|
4
|
+
* `ExtractedConfig` class expresses a final configuration for a specific file.
|
|
5
|
+
*
|
|
6
|
+
* It provides one method.
|
|
7
|
+
*
|
|
8
|
+
* - `toCompatibleObjectAsConfigFileContent()`
|
|
9
|
+
* Convert this configuration to the compatible object as the content of
|
|
10
|
+
* config files. It converts the loaded parser and plugins to strings.
|
|
11
|
+
* `CLIEngine#getConfigForFile(filePath)` method uses this method.
|
|
12
|
+
*
|
|
13
|
+
* `ConfigArray#extractConfig(filePath)` creates a `ExtractedConfig` instance.
|
|
14
|
+
*
|
|
15
|
+
* @author Toru Nagashima <https://github.com/mysticatea>
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
import { IgnorePattern } from "./ignore-pattern.js";
|
|
19
|
+
|
|
20
|
+
// For VSCode intellisense
|
|
21
|
+
/** @typedef {import("../../shared/types").ConfigData} ConfigData */
|
|
22
|
+
/** @typedef {import("../../shared/types").GlobalConf} GlobalConf */
|
|
23
|
+
/** @typedef {import("../../shared/types").SeverityConf} SeverityConf */
|
|
24
|
+
/** @typedef {import("./config-dependency").DependentParser} DependentParser */
|
|
25
|
+
/** @typedef {import("./config-dependency").DependentPlugin} DependentPlugin */
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Check if `xs` starts with `ys`.
|
|
29
|
+
* @template T
|
|
30
|
+
* @param {T[]} xs The array to check.
|
|
31
|
+
* @param {T[]} ys The array that may be the first part of `xs`.
|
|
32
|
+
* @returns {boolean} `true` if `xs` starts with `ys`.
|
|
33
|
+
*/
|
|
34
|
+
function startsWith(xs, ys) {
|
|
35
|
+
return xs.length >= ys.length && ys.every((y, i) => y === xs[i]);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* The class for extracted config data.
|
|
40
|
+
*/
|
|
41
|
+
class ExtractedConfig {
|
|
42
|
+
constructor() {
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* The config name what `noInlineConfig` setting came from.
|
|
46
|
+
* @type {string}
|
|
47
|
+
*/
|
|
48
|
+
this.configNameOfNoInlineConfig = "";
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Environments.
|
|
52
|
+
* @type {Record<string, boolean>}
|
|
53
|
+
*/
|
|
54
|
+
this.env = {};
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Global variables.
|
|
58
|
+
* @type {Record<string, GlobalConf>}
|
|
59
|
+
*/
|
|
60
|
+
this.globals = {};
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* The glob patterns that ignore to lint.
|
|
64
|
+
* @type {(((filePath:string, dot?:boolean) => boolean) & { basePath:string; patterns:string[] }) | undefined}
|
|
65
|
+
*/
|
|
66
|
+
this.ignores = void 0;
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* The flag that disables directive comments.
|
|
70
|
+
* @type {boolean|undefined}
|
|
71
|
+
*/
|
|
72
|
+
this.noInlineConfig = void 0;
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* Parser definition.
|
|
76
|
+
* @type {DependentParser|null}
|
|
77
|
+
*/
|
|
78
|
+
this.parser = null;
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* Options for the parser.
|
|
82
|
+
* @type {Object}
|
|
83
|
+
*/
|
|
84
|
+
this.parserOptions = {};
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* Plugin definitions.
|
|
88
|
+
* @type {Record<string, DependentPlugin>}
|
|
89
|
+
*/
|
|
90
|
+
this.plugins = {};
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* Processor ID.
|
|
94
|
+
* @type {string|null}
|
|
95
|
+
*/
|
|
96
|
+
this.processor = null;
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* The flag that reports unused `eslint-disable` directive comments.
|
|
100
|
+
* @type {boolean|undefined}
|
|
101
|
+
*/
|
|
102
|
+
this.reportUnusedDisableDirectives = void 0;
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* Rule settings.
|
|
106
|
+
* @type {Record<string, [SeverityConf, ...any[]]>}
|
|
107
|
+
*/
|
|
108
|
+
this.rules = {};
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* Shared settings.
|
|
112
|
+
* @type {Object}
|
|
113
|
+
*/
|
|
114
|
+
this.settings = {};
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* Convert this config to the compatible object as a config file content.
|
|
119
|
+
* @returns {ConfigData} The converted object.
|
|
120
|
+
*/
|
|
121
|
+
toCompatibleObjectAsConfigFileContent() {
|
|
122
|
+
const {
|
|
123
|
+
/* eslint-disable no-unused-vars */
|
|
124
|
+
configNameOfNoInlineConfig: _ignore1,
|
|
125
|
+
processor: _ignore2,
|
|
126
|
+
/* eslint-enable no-unused-vars */
|
|
127
|
+
ignores,
|
|
128
|
+
...config
|
|
129
|
+
} = this;
|
|
130
|
+
|
|
131
|
+
config.parser = config.parser && config.parser.filePath;
|
|
132
|
+
config.plugins = Object.keys(config.plugins).filter(Boolean).reverse();
|
|
133
|
+
config.ignorePatterns = ignores ? ignores.patterns : [];
|
|
134
|
+
|
|
135
|
+
// Strip the default patterns from `ignorePatterns`.
|
|
136
|
+
if (startsWith(config.ignorePatterns, IgnorePattern.DefaultPatterns)) {
|
|
137
|
+
config.ignorePatterns =
|
|
138
|
+
config.ignorePatterns.slice(IgnorePattern.DefaultPatterns.length);
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
return config;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
export { ExtractedConfig };
|
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview `IgnorePattern` class.
|
|
3
|
+
*
|
|
4
|
+
* `IgnorePattern` class has the set of glob patterns and the base path.
|
|
5
|
+
*
|
|
6
|
+
* It provides two static methods.
|
|
7
|
+
*
|
|
8
|
+
* - `IgnorePattern.createDefaultIgnore(cwd)`
|
|
9
|
+
* Create the default predicate function.
|
|
10
|
+
* - `IgnorePattern.createIgnore(ignorePatterns)`
|
|
11
|
+
* Create the predicate function from multiple `IgnorePattern` objects.
|
|
12
|
+
*
|
|
13
|
+
* It provides two properties and a method.
|
|
14
|
+
*
|
|
15
|
+
* - `patterns`
|
|
16
|
+
* The glob patterns that ignore to lint.
|
|
17
|
+
* - `basePath`
|
|
18
|
+
* The base path of the glob patterns. If absolute paths existed in the
|
|
19
|
+
* glob patterns, those are handled as relative paths to the base path.
|
|
20
|
+
* - `getPatternsRelativeTo(basePath)`
|
|
21
|
+
* Get `patterns` as modified for a given base path. It modifies the
|
|
22
|
+
* absolute paths in the patterns as prepending the difference of two base
|
|
23
|
+
* paths.
|
|
24
|
+
*
|
|
25
|
+
* `ConfigArrayFactory` creates `IgnorePattern` objects when it processes
|
|
26
|
+
* `ignorePatterns` properties.
|
|
27
|
+
*
|
|
28
|
+
* @author Toru Nagashima <https://github.com/mysticatea>
|
|
29
|
+
*/
|
|
30
|
+
|
|
31
|
+
//------------------------------------------------------------------------------
|
|
32
|
+
// Requirements
|
|
33
|
+
//------------------------------------------------------------------------------
|
|
34
|
+
|
|
35
|
+
import assert from "assert";
|
|
36
|
+
import path from "path";
|
|
37
|
+
import ignore from "ignore";
|
|
38
|
+
import debugOrig from "debug";
|
|
39
|
+
|
|
40
|
+
const debug = debugOrig("eslintrc:ignore-pattern");
|
|
41
|
+
|
|
42
|
+
/** @typedef {ReturnType<import("ignore").default>} Ignore */
|
|
43
|
+
|
|
44
|
+
//------------------------------------------------------------------------------
|
|
45
|
+
// Helpers
|
|
46
|
+
//------------------------------------------------------------------------------
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Get the path to the common ancestor directory of given paths.
|
|
50
|
+
* @param {string[]} sourcePaths The paths to calculate the common ancestor.
|
|
51
|
+
* @returns {string} The path to the common ancestor directory.
|
|
52
|
+
*/
|
|
53
|
+
function getCommonAncestorPath(sourcePaths) {
|
|
54
|
+
let result = sourcePaths[0];
|
|
55
|
+
|
|
56
|
+
for (let i = 1; i < sourcePaths.length; ++i) {
|
|
57
|
+
const a = result;
|
|
58
|
+
const b = sourcePaths[i];
|
|
59
|
+
|
|
60
|
+
// Set the shorter one (it's the common ancestor if one includes the other).
|
|
61
|
+
result = a.length < b.length ? a : b;
|
|
62
|
+
|
|
63
|
+
// Set the common ancestor.
|
|
64
|
+
for (let j = 0, lastSepPos = 0; j < a.length && j < b.length; ++j) {
|
|
65
|
+
if (a[j] !== b[j]) {
|
|
66
|
+
result = a.slice(0, lastSepPos);
|
|
67
|
+
break;
|
|
68
|
+
}
|
|
69
|
+
if (a[j] === path.sep) {
|
|
70
|
+
lastSepPos = j;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
let resolvedResult = result || path.sep;
|
|
76
|
+
|
|
77
|
+
// if Windows common ancestor is root of drive must have trailing slash to be absolute.
|
|
78
|
+
if (resolvedResult && resolvedResult.endsWith(":") && process.platform === "win32") {
|
|
79
|
+
resolvedResult += path.sep;
|
|
80
|
+
}
|
|
81
|
+
return resolvedResult;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* Make relative path.
|
|
86
|
+
* @param {string} from The source path to get relative path.
|
|
87
|
+
* @param {string} to The destination path to get relative path.
|
|
88
|
+
* @returns {string} The relative path.
|
|
89
|
+
*/
|
|
90
|
+
function relative(from, to) {
|
|
91
|
+
const relPath = path.relative(from, to);
|
|
92
|
+
|
|
93
|
+
if (path.sep === "/") {
|
|
94
|
+
return relPath;
|
|
95
|
+
}
|
|
96
|
+
return relPath.split(path.sep).join("/");
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* Get the trailing slash if existed.
|
|
101
|
+
* @param {string} filePath The path to check.
|
|
102
|
+
* @returns {string} The trailing slash if existed.
|
|
103
|
+
*/
|
|
104
|
+
function dirSuffix(filePath) {
|
|
105
|
+
const isDir = (
|
|
106
|
+
filePath.endsWith(path.sep) ||
|
|
107
|
+
(process.platform === "win32" && filePath.endsWith("/"))
|
|
108
|
+
);
|
|
109
|
+
|
|
110
|
+
return isDir ? "/" : "";
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
const DefaultPatterns = Object.freeze(["/**/node_modules/*"]);
|
|
114
|
+
const DotPatterns = Object.freeze([".*", "!.eslintrc.*", "!../"]);
|
|
115
|
+
|
|
116
|
+
//------------------------------------------------------------------------------
|
|
117
|
+
// Public
|
|
118
|
+
//------------------------------------------------------------------------------
|
|
119
|
+
|
|
120
|
+
class IgnorePattern {
|
|
121
|
+
|
|
122
|
+
/**
|
|
123
|
+
* The default patterns.
|
|
124
|
+
* @type {string[]}
|
|
125
|
+
*/
|
|
126
|
+
static get DefaultPatterns() {
|
|
127
|
+
return DefaultPatterns;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* Create the default predicate function.
|
|
132
|
+
* @param {string} cwd The current working directory.
|
|
133
|
+
* @returns {((filePath:string, dot:boolean) => boolean) & {basePath:string; patterns:string[]}}
|
|
134
|
+
* The preficate function.
|
|
135
|
+
* The first argument is an absolute path that is checked.
|
|
136
|
+
* The second argument is the flag to not ignore dotfiles.
|
|
137
|
+
* If the predicate function returned `true`, it means the path should be ignored.
|
|
138
|
+
*/
|
|
139
|
+
static createDefaultIgnore(cwd) {
|
|
140
|
+
return this.createIgnore([new IgnorePattern(DefaultPatterns, cwd)]);
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* Create the predicate function from multiple `IgnorePattern` objects.
|
|
145
|
+
* @param {IgnorePattern[]} ignorePatterns The list of ignore patterns.
|
|
146
|
+
* @returns {((filePath:string, dot?:boolean) => boolean) & {basePath:string; patterns:string[]}}
|
|
147
|
+
* The preficate function.
|
|
148
|
+
* The first argument is an absolute path that is checked.
|
|
149
|
+
* The second argument is the flag to not ignore dotfiles.
|
|
150
|
+
* If the predicate function returned `true`, it means the path should be ignored.
|
|
151
|
+
*/
|
|
152
|
+
static createIgnore(ignorePatterns) {
|
|
153
|
+
debug("Create with: %o", ignorePatterns);
|
|
154
|
+
|
|
155
|
+
const basePath = getCommonAncestorPath(ignorePatterns.map(p => p.basePath));
|
|
156
|
+
const patterns = [].concat(
|
|
157
|
+
...ignorePatterns.map(p => p.getPatternsRelativeTo(basePath))
|
|
158
|
+
);
|
|
159
|
+
const ig = ignore({ allowRelativePaths: true }).add([...DotPatterns, ...patterns]);
|
|
160
|
+
const dotIg = ignore({ allowRelativePaths: true }).add(patterns);
|
|
161
|
+
|
|
162
|
+
debug(" processed: %o", { basePath, patterns });
|
|
163
|
+
|
|
164
|
+
return Object.assign(
|
|
165
|
+
(filePath, dot = false) => {
|
|
166
|
+
assert(path.isAbsolute(filePath), "'filePath' should be an absolute path.");
|
|
167
|
+
const relPathRaw = relative(basePath, filePath);
|
|
168
|
+
const relPath = relPathRaw && (relPathRaw + dirSuffix(filePath));
|
|
169
|
+
const adoptedIg = dot ? dotIg : ig;
|
|
170
|
+
const result = relPath !== "" && adoptedIg.ignores(relPath);
|
|
171
|
+
|
|
172
|
+
debug("Check", { filePath, dot, relativePath: relPath, result });
|
|
173
|
+
return result;
|
|
174
|
+
},
|
|
175
|
+
{ basePath, patterns }
|
|
176
|
+
);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
/**
|
|
180
|
+
* Initialize a new `IgnorePattern` instance.
|
|
181
|
+
* @param {string[]} patterns The glob patterns that ignore to lint.
|
|
182
|
+
* @param {string} basePath The base path of `patterns`.
|
|
183
|
+
*/
|
|
184
|
+
constructor(patterns, basePath) {
|
|
185
|
+
assert(path.isAbsolute(basePath), "'basePath' should be an absolute path.");
|
|
186
|
+
|
|
187
|
+
/**
|
|
188
|
+
* The glob patterns that ignore to lint.
|
|
189
|
+
* @type {string[]}
|
|
190
|
+
*/
|
|
191
|
+
this.patterns = patterns;
|
|
192
|
+
|
|
193
|
+
/**
|
|
194
|
+
* The base path of `patterns`.
|
|
195
|
+
* @type {string}
|
|
196
|
+
*/
|
|
197
|
+
this.basePath = basePath;
|
|
198
|
+
|
|
199
|
+
/**
|
|
200
|
+
* If `true` then patterns which don't start with `/` will match the paths to the outside of `basePath`. Defaults to `false`.
|
|
201
|
+
*
|
|
202
|
+
* It's set `true` for `.eslintignore`, `package.json`, and `--ignore-path` for backward compatibility.
|
|
203
|
+
* It's `false` as-is for `ignorePatterns` property in config files.
|
|
204
|
+
* @type {boolean}
|
|
205
|
+
*/
|
|
206
|
+
this.loose = false;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
/**
|
|
210
|
+
* Get `patterns` as modified for a given base path. It modifies the
|
|
211
|
+
* absolute paths in the patterns as prepending the difference of two base
|
|
212
|
+
* paths.
|
|
213
|
+
* @param {string} newBasePath The base path.
|
|
214
|
+
* @returns {string[]} Modifired patterns.
|
|
215
|
+
*/
|
|
216
|
+
getPatternsRelativeTo(newBasePath) {
|
|
217
|
+
assert(path.isAbsolute(newBasePath), "'newBasePath' should be an absolute path.");
|
|
218
|
+
const { basePath, loose, patterns } = this;
|
|
219
|
+
|
|
220
|
+
if (newBasePath === basePath) {
|
|
221
|
+
return patterns;
|
|
222
|
+
}
|
|
223
|
+
const prefix = `/${relative(newBasePath, basePath)}`;
|
|
224
|
+
|
|
225
|
+
return patterns.map(pattern => {
|
|
226
|
+
const negative = pattern.startsWith("!");
|
|
227
|
+
const head = negative ? "!" : "";
|
|
228
|
+
const body = negative ? pattern.slice(1) : pattern;
|
|
229
|
+
|
|
230
|
+
if (body.startsWith("/") || body.startsWith("../")) {
|
|
231
|
+
return `${head}${prefix}${body}`;
|
|
232
|
+
}
|
|
233
|
+
return loose ? pattern : `${head}${prefix}/**/${body}`;
|
|
234
|
+
});
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
export { IgnorePattern };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview `ConfigArray` class.
|
|
3
|
+
* @author Toru Nagashima <https://github.com/mysticatea>
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import { ConfigArray, getUsedExtractedConfigs } from "./config-array.js";
|
|
7
|
+
import { ConfigDependency } from "./config-dependency.js";
|
|
8
|
+
import { ExtractedConfig } from "./extracted-config.js";
|
|
9
|
+
import { IgnorePattern } from "./ignore-pattern.js";
|
|
10
|
+
import { OverrideTester } from "./override-tester.js";
|
|
11
|
+
|
|
12
|
+
export {
|
|
13
|
+
ConfigArray,
|
|
14
|
+
ConfigDependency,
|
|
15
|
+
ExtractedConfig,
|
|
16
|
+
IgnorePattern,
|
|
17
|
+
OverrideTester,
|
|
18
|
+
getUsedExtractedConfigs
|
|
19
|
+
};
|
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview `OverrideTester` class.
|
|
3
|
+
*
|
|
4
|
+
* `OverrideTester` class handles `files` property and `excludedFiles` property
|
|
5
|
+
* of `overrides` config.
|
|
6
|
+
*
|
|
7
|
+
* It provides one method.
|
|
8
|
+
*
|
|
9
|
+
* - `test(filePath)`
|
|
10
|
+
* Test if a file path matches the pair of `files` property and
|
|
11
|
+
* `excludedFiles` property. The `filePath` argument must be an absolute
|
|
12
|
+
* path.
|
|
13
|
+
*
|
|
14
|
+
* `ConfigArrayFactory` creates `OverrideTester` objects when it processes
|
|
15
|
+
* `overrides` properties.
|
|
16
|
+
*
|
|
17
|
+
* @author Toru Nagashima <https://github.com/mysticatea>
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
import assert from "assert";
|
|
21
|
+
import path from "path";
|
|
22
|
+
import util from "util";
|
|
23
|
+
import minimatch from "minimatch";
|
|
24
|
+
|
|
25
|
+
const { Minimatch } = minimatch;
|
|
26
|
+
|
|
27
|
+
const minimatchOpts = { dot: true, matchBase: true };
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @typedef {Object} Pattern
|
|
31
|
+
* @property {InstanceType<Minimatch>[] | null} includes The positive matchers.
|
|
32
|
+
* @property {InstanceType<Minimatch>[] | null} excludes The negative matchers.
|
|
33
|
+
*/
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Normalize a given pattern to an array.
|
|
37
|
+
* @param {string|string[]|undefined} patterns A glob pattern or an array of glob patterns.
|
|
38
|
+
* @returns {string[]|null} Normalized patterns.
|
|
39
|
+
* @private
|
|
40
|
+
*/
|
|
41
|
+
function normalizePatterns(patterns) {
|
|
42
|
+
if (Array.isArray(patterns)) {
|
|
43
|
+
return patterns.filter(Boolean);
|
|
44
|
+
}
|
|
45
|
+
if (typeof patterns === "string" && patterns) {
|
|
46
|
+
return [patterns];
|
|
47
|
+
}
|
|
48
|
+
return [];
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Create the matchers of given patterns.
|
|
53
|
+
* @param {string[]} patterns The patterns.
|
|
54
|
+
* @returns {InstanceType<Minimatch>[] | null} The matchers.
|
|
55
|
+
*/
|
|
56
|
+
function toMatcher(patterns) {
|
|
57
|
+
if (patterns.length === 0) {
|
|
58
|
+
return null;
|
|
59
|
+
}
|
|
60
|
+
return patterns.map(pattern => {
|
|
61
|
+
if (/^\.[/\\]/u.test(pattern)) {
|
|
62
|
+
return new Minimatch(
|
|
63
|
+
pattern.slice(2),
|
|
64
|
+
|
|
65
|
+
// `./*.js` should not match with `subdir/foo.js`
|
|
66
|
+
{ ...minimatchOpts, matchBase: false }
|
|
67
|
+
);
|
|
68
|
+
}
|
|
69
|
+
return new Minimatch(pattern, minimatchOpts);
|
|
70
|
+
});
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* Convert a given matcher to string.
|
|
75
|
+
* @param {Pattern} matchers The matchers.
|
|
76
|
+
* @returns {string} The string expression of the matcher.
|
|
77
|
+
*/
|
|
78
|
+
function patternToJson({ includes, excludes }) {
|
|
79
|
+
return {
|
|
80
|
+
includes: includes && includes.map(m => m.pattern),
|
|
81
|
+
excludes: excludes && excludes.map(m => m.pattern)
|
|
82
|
+
};
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* The class to test given paths are matched by the patterns.
|
|
87
|
+
*/
|
|
88
|
+
class OverrideTester {
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* Create a tester with given criteria.
|
|
92
|
+
* If there are no criteria, returns `null`.
|
|
93
|
+
* @param {string|string[]} files The glob patterns for included files.
|
|
94
|
+
* @param {string|string[]} excludedFiles The glob patterns for excluded files.
|
|
95
|
+
* @param {string} basePath The path to the base directory to test paths.
|
|
96
|
+
* @returns {OverrideTester|null} The created instance or `null`.
|
|
97
|
+
*/
|
|
98
|
+
static create(files, excludedFiles, basePath) {
|
|
99
|
+
const includePatterns = normalizePatterns(files);
|
|
100
|
+
const excludePatterns = normalizePatterns(excludedFiles);
|
|
101
|
+
let endsWithWildcard = false;
|
|
102
|
+
|
|
103
|
+
if (includePatterns.length === 0) {
|
|
104
|
+
return null;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
// Rejects absolute paths or relative paths to parents.
|
|
108
|
+
for (const pattern of includePatterns) {
|
|
109
|
+
if (path.isAbsolute(pattern) || pattern.includes("..")) {
|
|
110
|
+
throw new Error(`Invalid override pattern (expected relative path not containing '..'): ${pattern}`);
|
|
111
|
+
}
|
|
112
|
+
if (pattern.endsWith("*")) {
|
|
113
|
+
endsWithWildcard = true;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
for (const pattern of excludePatterns) {
|
|
117
|
+
if (path.isAbsolute(pattern) || pattern.includes("..")) {
|
|
118
|
+
throw new Error(`Invalid override pattern (expected relative path not containing '..'): ${pattern}`);
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
const includes = toMatcher(includePatterns);
|
|
123
|
+
const excludes = toMatcher(excludePatterns);
|
|
124
|
+
|
|
125
|
+
return new OverrideTester(
|
|
126
|
+
[{ includes, excludes }],
|
|
127
|
+
basePath,
|
|
128
|
+
endsWithWildcard
|
|
129
|
+
);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
/**
|
|
133
|
+
* Combine two testers by logical and.
|
|
134
|
+
* If either of the testers was `null`, returns the other tester.
|
|
135
|
+
* The `basePath` property of the two must be the same value.
|
|
136
|
+
* @param {OverrideTester|null} a A tester.
|
|
137
|
+
* @param {OverrideTester|null} b Another tester.
|
|
138
|
+
* @returns {OverrideTester|null} Combined tester.
|
|
139
|
+
*/
|
|
140
|
+
static and(a, b) {
|
|
141
|
+
if (!b) {
|
|
142
|
+
return a && new OverrideTester(
|
|
143
|
+
a.patterns,
|
|
144
|
+
a.basePath,
|
|
145
|
+
a.endsWithWildcard
|
|
146
|
+
);
|
|
147
|
+
}
|
|
148
|
+
if (!a) {
|
|
149
|
+
return new OverrideTester(
|
|
150
|
+
b.patterns,
|
|
151
|
+
b.basePath,
|
|
152
|
+
b.endsWithWildcard
|
|
153
|
+
);
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
assert.strictEqual(a.basePath, b.basePath);
|
|
157
|
+
return new OverrideTester(
|
|
158
|
+
a.patterns.concat(b.patterns),
|
|
159
|
+
a.basePath,
|
|
160
|
+
a.endsWithWildcard || b.endsWithWildcard
|
|
161
|
+
);
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
* Initialize this instance.
|
|
166
|
+
* @param {Pattern[]} patterns The matchers.
|
|
167
|
+
* @param {string} basePath The base path.
|
|
168
|
+
* @param {boolean} endsWithWildcard If `true` then a pattern ends with `*`.
|
|
169
|
+
*/
|
|
170
|
+
constructor(patterns, basePath, endsWithWildcard = false) {
|
|
171
|
+
|
|
172
|
+
/** @type {Pattern[]} */
|
|
173
|
+
this.patterns = patterns;
|
|
174
|
+
|
|
175
|
+
/** @type {string} */
|
|
176
|
+
this.basePath = basePath;
|
|
177
|
+
|
|
178
|
+
/** @type {boolean} */
|
|
179
|
+
this.endsWithWildcard = endsWithWildcard;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
/**
|
|
183
|
+
* Test if a given path is matched or not.
|
|
184
|
+
* @param {string} filePath The absolute path to the target file.
|
|
185
|
+
* @returns {boolean} `true` if the path was matched.
|
|
186
|
+
*/
|
|
187
|
+
test(filePath) {
|
|
188
|
+
if (typeof filePath !== "string" || !path.isAbsolute(filePath)) {
|
|
189
|
+
throw new Error(`'filePath' should be an absolute path, but got ${filePath}.`);
|
|
190
|
+
}
|
|
191
|
+
const relativePath = path.relative(this.basePath, filePath);
|
|
192
|
+
|
|
193
|
+
return this.patterns.every(({ includes, excludes }) => (
|
|
194
|
+
(!includes || includes.some(m => m.match(relativePath))) &&
|
|
195
|
+
(!excludes || !excludes.some(m => m.match(relativePath)))
|
|
196
|
+
));
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
// eslint-disable-next-line jsdoc/require-description
|
|
200
|
+
/**
|
|
201
|
+
* @returns {Object} a JSON compatible object.
|
|
202
|
+
*/
|
|
203
|
+
toJSON() {
|
|
204
|
+
if (this.patterns.length === 1) {
|
|
205
|
+
return {
|
|
206
|
+
...patternToJson(this.patterns[0]),
|
|
207
|
+
basePath: this.basePath
|
|
208
|
+
};
|
|
209
|
+
}
|
|
210
|
+
return {
|
|
211
|
+
AND: this.patterns.map(patternToJson),
|
|
212
|
+
basePath: this.basePath
|
|
213
|
+
};
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
// eslint-disable-next-line jsdoc/require-description
|
|
217
|
+
/**
|
|
218
|
+
* @returns {Object} an object to display by `console.log()`.
|
|
219
|
+
*/
|
|
220
|
+
[util.inspect.custom]() {
|
|
221
|
+
return this.toJSON();
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
export { OverrideTester };
|