repoburg 1.1.0 → 1.1.2
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/tsconfig.build.tsbuildinfo +1 -1
- package/backend/node_modules/@typescript-eslint/eslint-plugin/LICENSE +21 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/README.md +12 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/all.js +156 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/all.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js +13 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/disable-type-checked.js +64 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/disable-type-checked.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js +31 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/recommended-type-checked.js +54 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/recommended-type-checked.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/recommended.js +33 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/recommended.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/strict-type-checked.js +79 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/strict-type-checked.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/strict.js +43 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/strict.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/stylistic-type-checked.js +35 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/stylistic-type-checked.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/stylistic.js +29 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/stylistic.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +39 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/index.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/adjacent-overload-signatures.js +140 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/adjacent-overload-signatures.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/array-type.js +222 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/array-type.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/await-thenable.js +76 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/await-thenable.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-ts-comment.js +156 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-ts-comment.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-tslint-comment.js +56 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-tslint-comment.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-types.js +240 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-types.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/block-spacing.js +140 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/block-spacing.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/brace-style.js +99 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/brace-style.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-literal-property-style.js +123 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-literal-property-style.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-methods-use-this.js +211 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-methods-use-this.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/comma-dangle.js +166 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/comma-dangle.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/comma-spacing.js +152 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/comma-spacing.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-generic-constructors.js +109 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-generic-constructors.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-indexed-object-style.js +128 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-indexed-object-style.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-assertions.js +222 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-assertions.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-definitions.js +98 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-definitions.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-exports.js +245 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-exports.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-imports.js +635 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-imports.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/default-param-last.js +63 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/default-param-last.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/dot-notation.js +120 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/dot-notation.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/enum-utils/shared.js +112 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/enum-utils/shared.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-function-return-type.js +164 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-function-return-type.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-member-accessibility.js +283 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-member-accessibility.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-module-boundary-types.js +366 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-module-boundary-types.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/func-call-spacing.js +147 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/func-call-spacing.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent.js +415 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/index.js +288 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/index.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/init-declarations.js +48 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/init-declarations.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/key-spacing.js +322 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/key-spacing.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/keyword-spacing.js +95 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/keyword-spacing.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/lines-around-comment.js +357 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/lines-around-comment.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/lines-between-class-members.js +57 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/lines-between-class-members.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/max-params.js +67 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/max-params.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-delimiter-style.js +258 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-delimiter-style.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-ordering.js +747 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-ordering.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/method-signature-style.js +181 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/method-signature-style.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/enums.js +101 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/enums.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/format.js +91 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/format.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/index.js +12 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/index.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/parse-options.js +75 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/parse-options.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/schema.js +291 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/schema.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/shared.js +18 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/shared.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/types.js +3 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/types.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/validator.js +351 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/validator.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention.js +488 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-constructor.js +53 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-constructor.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-delete.js +83 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-delete.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-base-to-string.js +164 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-base-to-string.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-non-null-assertion.js +78 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-non-null-assertion.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-void-expression.js +293 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-void-expression.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dupe-class-members.js +51 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dupe-class-members.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-enum-values.js +62 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-enum-values.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-type-constituents.js +139 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-type-constituents.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dynamic-delete.js +95 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dynamic-delete.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-function.js +132 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-function.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-interface.js +94 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-interface.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-explicit-any.js +170 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-explicit-any.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-non-null-assertion.js +36 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-non-null-assertion.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-parens.js +297 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-parens.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-semi.js +43 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-semi.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extraneous-class.js +112 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extraneous-class.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-floating-promises.js +342 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-floating-promises.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-for-in-array.js +60 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-for-in-array.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-implied-eval.js +160 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-implied-eval.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-import-type-side-effects.js +56 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-import-type-side-effects.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-inferrable-types.js +185 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-inferrable-types.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-this.js +76 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-this.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-void-type.js +182 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-void-type.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loop-func.js +169 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loop-func.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loss-of-precision.js +39 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loss-of-precision.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-magic-numbers.js +213 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-magic-numbers.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-meaningless-void-operator.js +96 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-meaningless-void-operator.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-new.js +82 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-new.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-promises.js +523 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-promises.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-mixed-enums.js +193 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-mixed-enums.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-namespace.js +63 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-namespace.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-nullish-coalescing.js +76 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-nullish-coalescing.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-optional-chain.js +66 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-optional-chain.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-assertion.js +104 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-assertion.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redeclare.js +201 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redeclare.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redundant-type-constituents.js +372 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redundant-type-constituents.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-require-imports.js +90 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-require-imports.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-restricted-imports.js +237 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-restricted-imports.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-shadow.js +482 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-shadow.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-this-alias.js +65 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-this-alias.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-throw-literal.js +96 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-throw-literal.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-type-alias.js +260 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-type-alias.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-boolean-literal-compare.js +234 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-boolean-literal-compare.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-condition.js +540 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-condition.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-qualifier.js +149 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-qualifier.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-arguments.js +150 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-arguments.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-assertion.js +252 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-assertion.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-constraint.js +112 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-constraint.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-argument.js +226 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-argument.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-assignment.js +282 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-assignment.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-call.js +83 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-call.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-declaration-merging.js +56 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-declaration-merging.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-enum-comparison.js +168 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-enum-comparison.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-member-access.js +123 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-member-access.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-return.js +161 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-return.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-unary-minus.js +68 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-unary-minus.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-expressions.js +58 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-expressions.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-vars.js +490 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-vars.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-use-before-define.js +297 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-use-before-define.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-constructor.js +59 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-constructor.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-empty-export.js +72 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-empty-export.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-template-literals.js +138 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-template-literals.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-var-requires.js +67 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-var-requires.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/non-nullable-type-assertion-style.js +125 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/non-nullable-type-assertion-style.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/object-curly-spacing.js +226 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/object-curly-spacing.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/padding-line-between-statements.js +634 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/padding-line-between-statements.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/parameter-properties.js +171 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/parameter-properties.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-as-const.js +73 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-as-const.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-destructuring.js +200 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-destructuring.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-enum-initializers.js +65 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-enum-initializers.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-find.js +235 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-find.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-for-of.js +156 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-for-of.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-function-type.js +186 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-function-type.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-includes.js +231 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-includes.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-literal-enum-member.js +72 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-literal-enum-member.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-namespace-keyword.js +46 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-namespace-keyword.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-nullish-coalescing.js +348 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-nullish-coalescing.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/PreferOptionalChainOptions.js +3 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/PreferOptionalChainOptions.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/analyzeChain.js +417 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/analyzeChain.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/compareNodes.js +318 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/compareNodes.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/gatherLogicalOperands.js +279 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/gatherLogicalOperands.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain.js +175 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-promise-reject-errors.js +107 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-promise-reject-errors.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly-parameter-types.js +82 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly-parameter-types.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly.js +315 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-reduce-type-parameter.js +74 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-reduce-type-parameter.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-regexp-exec.js +159 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-regexp-exec.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-return-this-type.js +137 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-return-this-type.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-string-starts-ends-with.js +508 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-string-starts-ends-with.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-ts-expect-error.js +62 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-ts-expect-error.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/promise-function-async.js +182 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/promise-function-async.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/quotes.js +63 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/quotes.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-array-sort-compare.js +62 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-array-sort-compare.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-await.js +212 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-await.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-plus-operands.js +211 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-plus-operands.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-template-expressions.js +145 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-template-expressions.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/return-await.js +268 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/return-await.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/semi.js +64 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/semi.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/sort-type-constituents.js +228 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/sort-type-constituents.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-before-blocks.js +80 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-before-blocks.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-before-function-paren.js +143 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-before-function-paren.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-infix-ops.js +133 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-infix-ops.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/strict-boolean-expressions.js +800 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/strict-boolean-expressions.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/switch-exhaustiveness-check.js +242 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/switch-exhaustiveness-check.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/triple-slash-reference.js +110 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/triple-slash-reference.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/type-annotation-spacing.js +228 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/type-annotation-spacing.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/typedef.js +200 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/typedef.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unbound-method.js +245 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unbound-method.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unified-signatures.js +398 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unified-signatures.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/astUtils.js +89 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/astUtils.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/collectUnusedVariables.js +562 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/collectUnusedVariables.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/createRule.js +6 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/createRule.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/escapeRegExp.js +16 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/escapeRegExp.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/explicitReturnTypeUtils.js +241 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/explicitReturnTypeUtils.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getESLintCoreRule.js +45 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getESLintCoreRule.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getFunctionHeadLoc.js +163 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getFunctionHeadLoc.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getOperatorPrecedence.js +418 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getOperatorPrecedence.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getStaticStringValue.js +46 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getStaticStringValue.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getStringLength.js +20 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getStringLength.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getThisExpression.js +26 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getThisExpression.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappedCode.js +8 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappedCode.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappingFixer.js +155 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappingFixer.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/index.js +42 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/index.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/isNodeEqual.js +27 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/isNodeEqual.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/isNullLiteral.js +9 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/isNullLiteral.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/isUndefinedIdentifier.js +9 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/isUndefinedIdentifier.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/misc.js +189 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/misc.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/objectIterators.js +27 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/objectIterators.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/README.md +60 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/TEMPLATE.md +30 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/adjacent-overload-signatures.md +99 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/array-type.md +111 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/await-thenable.md +42 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/ban-ts-comment.md +151 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/ban-tslint-comment.md +39 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/ban-types.md +132 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/block-spacing.md +10 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/brace-style.md +10 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/camelcase.md +13 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/class-literal-property-style.md +105 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/class-methods-use-this.md +96 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/comma-dangle.md +20 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/comma-spacing.md +10 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-generic-constructors.md +76 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-indexed-object-style.md +80 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-type-assertions.md +113 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-type-definitions.md +81 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-type-exports.md +105 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-type-imports.md +108 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/default-param-last.md +58 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/dot-notation.md +82 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/explicit-function-return-type.md +320 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/explicit-member-accessibility.md +344 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/explicit-module-boundary-types.md +249 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/func-call-spacing.md +10 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/indent.md +18 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/init-declarations.md +10 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/key-spacing.md +10 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/keyword-spacing.md +10 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/lines-around-comment.md +25 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/lines-between-class-members.md +55 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/max-params.md +10 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/member-delimiter-style.md +164 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/member-ordering.md +1438 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/method-signature-style.md +113 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/naming-convention.md +721 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-array-constructor.md +29 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-array-delete.md +40 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-base-to-string.md +88 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-confusing-non-null-assertion.md +56 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-confusing-void-expression.md +116 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-dupe-class-members.md +14 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-duplicate-enum-values.md +58 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-duplicate-imports.md +13 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-duplicate-type-constituents.md +66 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-dynamic-delete.md +53 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-empty-function.md +92 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-empty-interface.md +59 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-explicit-any.md +168 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-extra-non-null-assertion.md +54 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-extra-parens.md +10 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-extra-semi.md +12 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-extraneous-class.md +295 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-floating-promises.md +124 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-for-in-array.md +61 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-implied-eval.md +102 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-import-type-side-effects.md +74 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-inferrable-types.md +103 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-invalid-this.md +14 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-invalid-void-type.md +112 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-loop-func.md +10 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-loss-of-precision.md +10 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-magic-numbers.md +119 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-meaningless-void-operator.md +53 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-misused-new.md +47 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-misused-promises.md +246 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-mixed-enums.md +88 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-namespace.md +131 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-non-null-asserted-nullish-coalescing.md +54 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-non-null-asserted-optional-chain.md +40 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-non-null-assertion.md +42 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-parameter-properties.md +12 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-redeclare.md +75 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-redundant-type-constituents.md +92 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-require-imports.md +60 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-restricted-imports.md +71 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-shadow.md +105 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-this-alias.md +108 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-throw-literal.md +109 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-type-alias.md +623 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-boolean-literal-compare.md +133 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-condition.md +119 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-qualifier.md +51 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-type-arguments.md +79 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-type-assertion.md +77 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-type-constraint.md +55 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-argument.md +93 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-assignment.md +96 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-call.md +68 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-declaration-merging.md +59 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-enum-comparison.md +82 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-member-access.md +74 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-return.md +113 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-unary-minus.md +52 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unused-expressions.md +10 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unused-vars.md +27 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-use-before-define.md +87 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-useless-constructor.md +19 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-useless-empty-export.md +47 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-useless-template-literals.md +57 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-var-requires.md +60 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/non-nullable-type-assertion-style.md +41 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/object-curly-spacing.md +10 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/padding-line-between-statements.md +33 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/parameter-properties.md +488 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-as-const.md +47 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-destructuring.md +91 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-enum-initializers.md +62 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-find.md +39 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-for-of.md +44 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-function-type.md +92 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-includes.md +75 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-literal-enum-member.md +103 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-namespace-keyword.md +47 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-nullish-coalescing.md +187 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-optional-chain.md +263 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-promise-reject-errors.md +50 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-readonly-parameter-types.md +389 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-readonly.md +102 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-reduce-type-parameter.md +60 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-regexp-exec.md +46 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-return-this-type.md +87 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-string-starts-ends-with.md +58 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-ts-expect-error.md +70 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/promise-function-async.md +132 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/quotes.md +10 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/require-array-sort-compare.md +78 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/require-await.md +22 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/restrict-plus-operands.md +208 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/restrict-template-expressions.md +121 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/return-await.md +216 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/semi.md +12 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/sort-type-constituents.md +163 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/space-before-blocks.md +43 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/space-before-function-paren.md +10 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/space-infix-ops.md +16 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/strict-boolean-expressions.md +190 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/switch-exhaustiveness-check.md +225 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/triple-slash-reference.md +110 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/type-annotation-spacing.md +317 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/typedef.md +320 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/unbound-method.md +105 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/unified-signatures.md +77 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/index.d.ts +9 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/package.json +106 -0
- package/backend/node_modules/@typescript-eslint/eslint-plugin/rules.d.ts +45 -0
- package/backend/node_modules/@typescript-eslint/parser/LICENSE +22 -0
- package/backend/node_modules/@typescript-eslint/parser/README.md +12 -0
- package/backend/node_modules/@typescript-eslint/parser/dist/index.d.ts +8 -0
- package/backend/node_modules/@typescript-eslint/parser/dist/index.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/parser/dist/index.js +17 -0
- package/backend/node_modules/@typescript-eslint/parser/dist/index.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/parser/dist/parser.d.ts +20 -0
- package/backend/node_modules/@typescript-eslint/parser/dist/parser.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/parser/dist/parser.js +130 -0
- package/backend/node_modules/@typescript-eslint/parser/dist/parser.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/parser/package.json +85 -0
- package/backend/node_modules/@typescript-eslint/type-utils/LICENSE +21 -0
- package/backend/node_modules/@typescript-eslint/type-utils/README.md +14 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/TypeOrValueSpecifier.d.ts +21 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/TypeOrValueSpecifier.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/TypeOrValueSpecifier.js +188 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/TypeOrValueSpecifier.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/builtinSymbolLikes.d.ts +39 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/builtinSymbolLikes.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/builtinSymbolLikes.js +130 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/builtinSymbolLikes.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/containsAllTypesByName.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/containsAllTypesByName.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/containsAllTypesByName.js +61 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/containsAllTypesByName.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getConstrainedTypeAtLocation.d.ts +7 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getConstrainedTypeAtLocation.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getConstrainedTypeAtLocation.js +15 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getConstrainedTypeAtLocation.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getContextualType.d.ts +8 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getContextualType.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getContextualType.js +66 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getContextualType.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getDeclaration.d.ts +7 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getDeclaration.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getDeclaration.js +16 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getDeclaration.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getSourceFileOfNode.d.ts +6 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getSourceFileOfNode.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getSourceFileOfNode.js +38 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getSourceFileOfNode.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getTokenAtPosition.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getTokenAtPosition.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getTokenAtPosition.js +51 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getTokenAtPosition.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getTypeArguments.d.ts +6 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getTypeArguments.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getTypeArguments.js +16 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getTypeArguments.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getTypeName.d.ts +8 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getTypeName.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getTypeName.js +74 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/getTypeName.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/index.d.ts +19 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/index.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/index.js +39 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/index.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/isSymbolFromDefaultLibrary.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/isSymbolFromDefaultLibrary.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/isSymbolFromDefaultLibrary.js +18 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/isSymbolFromDefaultLibrary.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/isTypeReadonly.d.ts +27 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/isTypeReadonly.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/isTypeReadonly.js +226 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/isTypeReadonly.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/isUnsafeAssignment.d.ts +17 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/isUnsafeAssignment.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/isUnsafeAssignment.js +106 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/isUnsafeAssignment.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/predicates.d.ts +58 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/predicates.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/predicates.js +169 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/predicates.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/propertyTypes.d.ts +4 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/propertyTypes.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/propertyTypes.js +37 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/propertyTypes.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/requiresQuoting.d.ts +4 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/requiresQuoting.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/requiresQuoting.js +43 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/requiresQuoting.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/typeFlagUtils.d.ts +16 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/typeFlagUtils.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/typeFlagUtils.js +59 -0
- package/backend/node_modules/@typescript-eslint/type-utils/dist/typeFlagUtils.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/type-utils/package.json +81 -0
- package/backend/node_modules/@typescript-eslint/utils/LICENSE +21 -0
- package/backend/node_modules/@typescript-eslint/utils/README.md +12 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.d.ts +48 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.js +36 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.d.ts +76 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.js +40 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.d.ts +76 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.js +99 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.d.ts +6 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.js +22 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.d.ts +32 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.js +72 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.d.ts +18 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.js +44 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.d.ts +1231 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.js +22 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/index.d.ts +5 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/index.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/index.js +21 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/index.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.d.ts +8 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.js +13 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.d.ts +70 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.js +135 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.d.ts +11 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.js +3 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.d.ts +35 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.js +45 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.js +34 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/context.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/context.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/context.js +32 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/context.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.d.ts +17 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.js +48 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.d.ts +24 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.js +46 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.d.ts +8 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.js +24 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.d.ts +14 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.js +28 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/parserPathSeemsToBeTSESLint.d.ts +2 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/parserPathSeemsToBeTSESLint.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/parserPathSeemsToBeTSESLint.js +8 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/parserPathSeemsToBeTSESLint.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/index.d.ts +8 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/index.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/index.js +41 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/index.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/json-schema.d.ts +388 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/json-schema.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/json-schema.js +9 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/json-schema.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.d.ts +9 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.js +4 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/CLIEngine.d.ts +131 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/CLIEngine.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/CLIEngine.js +18 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/CLIEngine.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Config.d.ts +260 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Config.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Config.js +4 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Config.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.d.ts +374 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.js +24 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.d.ts +247 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.js +14 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Parser.d.ts +89 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Parser.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Parser.js +4 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Parser.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.d.ts +2 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.js +3 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Processor.d.ts +37 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Processor.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Processor.js +4 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Processor.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.d.ts +514 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.js +3 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.d.ts +162 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.js +8 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.d.ts +44 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.js +34 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.d.ts +362 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.js +9 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.d.ts +13 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.js +29 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-estree.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-estree.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-estree.js +10 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-estree.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-utils/index.d.ts +2 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-utils/index.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-utils/index.js +18 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-utils/index.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-utils/isArray.d.ts +2 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-utils/isArray.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-utils/isArray.js +9 -0
- package/backend/node_modules/@typescript-eslint/utils/dist/ts-utils/isArray.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/utils/package.json +98 -0
- package/backend/node_modules/chalk/index.d.ts +415 -0
- package/backend/node_modules/chalk/license +9 -0
- package/backend/node_modules/chalk/package.json +68 -0
- package/backend/node_modules/chalk/readme.md +341 -0
- package/backend/node_modules/chalk/source/index.js +229 -0
- package/backend/node_modules/chalk/source/templates.js +134 -0
- package/backend/node_modules/chalk/source/util.js +39 -0
- package/backend/node_modules/debug/LICENSE +20 -0
- package/backend/node_modules/debug/README.md +481 -0
- package/backend/node_modules/debug/package.json +64 -0
- package/backend/node_modules/debug/src/browser.js +272 -0
- package/backend/node_modules/debug/src/common.js +292 -0
- package/backend/node_modules/debug/src/index.js +10 -0
- package/backend/node_modules/debug/src/node.js +263 -0
- package/backend/node_modules/eslint/LICENSE +19 -0
- package/backend/node_modules/eslint/README.md +304 -0
- package/backend/node_modules/eslint/bin/eslint.js +173 -0
- package/backend/node_modules/eslint/conf/config-schema.js +93 -0
- package/backend/node_modules/eslint/conf/default-cli-options.js +32 -0
- package/backend/node_modules/eslint/conf/globals.js +154 -0
- package/backend/node_modules/eslint/conf/replacements.json +22 -0
- package/backend/node_modules/eslint/conf/rule-type-list.json +28 -0
- package/backend/node_modules/eslint/lib/api.js +54 -0
- package/backend/node_modules/eslint/lib/cli-engine/cli-engine.js +1078 -0
- package/backend/node_modules/eslint/lib/cli-engine/file-enumerator.js +547 -0
- package/backend/node_modules/eslint/lib/cli-engine/formatters/checkstyle.js +60 -0
- package/backend/node_modules/eslint/lib/cli-engine/formatters/compact.js +60 -0
- package/backend/node_modules/eslint/lib/cli-engine/formatters/formatters-meta.json +46 -0
- package/backend/node_modules/eslint/lib/cli-engine/formatters/html.js +351 -0
- package/backend/node_modules/eslint/lib/cli-engine/formatters/jslint-xml.js +41 -0
- package/backend/node_modules/eslint/lib/cli-engine/formatters/json-with-metadata.js +16 -0
- package/backend/node_modules/eslint/lib/cli-engine/formatters/json.js +13 -0
- package/backend/node_modules/eslint/lib/cli-engine/formatters/junit.js +82 -0
- package/backend/node_modules/eslint/lib/cli-engine/formatters/stylish.js +101 -0
- package/backend/node_modules/eslint/lib/cli-engine/formatters/tap.js +95 -0
- package/backend/node_modules/eslint/lib/cli-engine/formatters/unix.js +58 -0
- package/backend/node_modules/eslint/lib/cli-engine/formatters/visualstudio.js +63 -0
- package/backend/node_modules/eslint/lib/cli-engine/hash.js +35 -0
- package/backend/node_modules/eslint/lib/cli-engine/index.js +7 -0
- package/backend/node_modules/eslint/lib/cli-engine/lint-result-cache.js +203 -0
- package/backend/node_modules/eslint/lib/cli-engine/load-rules.js +46 -0
- package/backend/node_modules/eslint/lib/cli-engine/xml-escape.js +34 -0
- package/backend/node_modules/eslint/lib/cli.js +471 -0
- package/backend/node_modules/eslint/lib/config/default-config.js +67 -0
- package/backend/node_modules/eslint/lib/config/flat-config-array.js +380 -0
- package/backend/node_modules/eslint/lib/config/flat-config-helpers.js +111 -0
- package/backend/node_modules/eslint/lib/config/flat-config-schema.js +598 -0
- package/backend/node_modules/eslint/lib/config/rule-validator.js +158 -0
- package/backend/node_modules/eslint/lib/eslint/eslint-helpers.js +932 -0
- package/backend/node_modules/eslint/lib/eslint/eslint.js +707 -0
- package/backend/node_modules/eslint/lib/eslint/flat-eslint.js +1159 -0
- package/backend/node_modules/eslint/lib/eslint/index.js +9 -0
- package/backend/node_modules/eslint/lib/linter/apply-disable-directives.js +465 -0
- package/backend/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js +852 -0
- package/backend/node_modules/eslint/lib/linter/code-path-analysis/code-path-segment.js +263 -0
- package/backend/node_modules/eslint/lib/linter/code-path-analysis/code-path-state.js +2348 -0
- package/backend/node_modules/eslint/lib/linter/code-path-analysis/code-path.js +342 -0
- package/backend/node_modules/eslint/lib/linter/code-path-analysis/debug-helpers.js +203 -0
- package/backend/node_modules/eslint/lib/linter/code-path-analysis/fork-context.js +349 -0
- package/backend/node_modules/eslint/lib/linter/code-path-analysis/id-generator.js +45 -0
- package/backend/node_modules/eslint/lib/linter/config-comment-parser.js +185 -0
- package/backend/node_modules/eslint/lib/linter/index.js +13 -0
- package/backend/node_modules/eslint/lib/linter/interpolate.js +28 -0
- package/backend/node_modules/eslint/lib/linter/linter.js +2119 -0
- package/backend/node_modules/eslint/lib/linter/node-event-generator.js +354 -0
- package/backend/node_modules/eslint/lib/linter/report-translator.js +369 -0
- package/backend/node_modules/eslint/lib/linter/rule-fixer.js +140 -0
- package/backend/node_modules/eslint/lib/linter/rules.js +80 -0
- package/backend/node_modules/eslint/lib/linter/safe-emitter.js +52 -0
- package/backend/node_modules/eslint/lib/linter/source-code-fixer.js +152 -0
- package/backend/node_modules/eslint/lib/linter/timing.js +161 -0
- package/backend/node_modules/eslint/lib/options.js +398 -0
- package/backend/node_modules/eslint/lib/rule-tester/flat-rule-tester.js +1131 -0
- package/backend/node_modules/eslint/lib/rule-tester/index.js +5 -0
- package/backend/node_modules/eslint/lib/rule-tester/rule-tester.js +1206 -0
- package/backend/node_modules/eslint/lib/rules/accessor-pairs.js +346 -0
- package/backend/node_modules/eslint/lib/rules/array-bracket-newline.js +261 -0
- package/backend/node_modules/eslint/lib/rules/array-bracket-spacing.js +244 -0
- package/backend/node_modules/eslint/lib/rules/array-callback-return.js +446 -0
- package/backend/node_modules/eslint/lib/rules/array-element-newline.js +311 -0
- package/backend/node_modules/eslint/lib/rules/arrow-body-style.js +296 -0
- package/backend/node_modules/eslint/lib/rules/arrow-parens.js +186 -0
- package/backend/node_modules/eslint/lib/rules/arrow-spacing.js +164 -0
- package/backend/node_modules/eslint/lib/rules/block-scoped-var.js +135 -0
- package/backend/node_modules/eslint/lib/rules/block-spacing.js +174 -0
- package/backend/node_modules/eslint/lib/rules/brace-style.js +197 -0
- package/backend/node_modules/eslint/lib/rules/callback-return.js +187 -0
- package/backend/node_modules/eslint/lib/rules/camelcase.js +399 -0
- package/backend/node_modules/eslint/lib/rules/capitalized-comments.js +300 -0
- package/backend/node_modules/eslint/lib/rules/class-methods-use-this.js +187 -0
- package/backend/node_modules/eslint/lib/rules/comma-dangle.js +373 -0
- package/backend/node_modules/eslint/lib/rules/comma-spacing.js +192 -0
- package/backend/node_modules/eslint/lib/rules/comma-style.js +314 -0
- package/backend/node_modules/eslint/lib/rules/complexity.js +165 -0
- package/backend/node_modules/eslint/lib/rules/computed-property-spacing.js +208 -0
- package/backend/node_modules/eslint/lib/rules/consistent-return.js +210 -0
- package/backend/node_modules/eslint/lib/rules/consistent-this.js +153 -0
- package/backend/node_modules/eslint/lib/rules/constructor-super.js +446 -0
- package/backend/node_modules/eslint/lib/rules/curly.js +486 -0
- package/backend/node_modules/eslint/lib/rules/default-case-last.js +44 -0
- package/backend/node_modules/eslint/lib/rules/default-case.js +97 -0
- package/backend/node_modules/eslint/lib/rules/default-param-last.js +62 -0
- package/backend/node_modules/eslint/lib/rules/dot-location.js +108 -0
- package/backend/node_modules/eslint/lib/rules/dot-notation.js +176 -0
- package/backend/node_modules/eslint/lib/rules/eol-last.js +115 -0
- package/backend/node_modules/eslint/lib/rules/eqeqeq.js +174 -0
- package/backend/node_modules/eslint/lib/rules/for-direction.js +140 -0
- package/backend/node_modules/eslint/lib/rules/func-call-spacing.js +233 -0
- package/backend/node_modules/eslint/lib/rules/func-name-matching.js +253 -0
- package/backend/node_modules/eslint/lib/rules/func-names.js +191 -0
- package/backend/node_modules/eslint/lib/rules/func-style.js +98 -0
- package/backend/node_modules/eslint/lib/rules/function-call-argument-newline.js +125 -0
- package/backend/node_modules/eslint/lib/rules/function-paren-newline.js +292 -0
- package/backend/node_modules/eslint/lib/rules/generator-star-spacing.js +209 -0
- package/backend/node_modules/eslint/lib/rules/getter-return.js +204 -0
- package/backend/node_modules/eslint/lib/rules/global-require.js +90 -0
- package/backend/node_modules/eslint/lib/rules/grouped-accessor-pairs.js +215 -0
- package/backend/node_modules/eslint/lib/rules/guard-for-in.js +76 -0
- package/backend/node_modules/eslint/lib/rules/handle-callback-err.js +101 -0
- package/backend/node_modules/eslint/lib/rules/id-blacklist.js +246 -0
- package/backend/node_modules/eslint/lib/rules/id-denylist.js +228 -0
- package/backend/node_modules/eslint/lib/rules/id-length.js +177 -0
- package/backend/node_modules/eslint/lib/rules/id-match.js +299 -0
- package/backend/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js +84 -0
- package/backend/node_modules/eslint/lib/rules/indent-legacy.js +1126 -0
- package/backend/node_modules/eslint/lib/rules/indent.js +1803 -0
- package/backend/node_modules/eslint/lib/rules/index.js +306 -0
- package/backend/node_modules/eslint/lib/rules/init-declarations.js +139 -0
- package/backend/node_modules/eslint/lib/rules/jsx-quotes.js +98 -0
- package/backend/node_modules/eslint/lib/rules/key-spacing.js +687 -0
- package/backend/node_modules/eslint/lib/rules/keyword-spacing.js +640 -0
- package/backend/node_modules/eslint/lib/rules/line-comment-position.js +122 -0
- package/backend/node_modules/eslint/lib/rules/linebreak-style.js +108 -0
- package/backend/node_modules/eslint/lib/rules/lines-around-comment.js +471 -0
- package/backend/node_modules/eslint/lib/rules/lines-around-directive.js +201 -0
- package/backend/node_modules/eslint/lib/rules/lines-between-class-members.js +269 -0
- package/backend/node_modules/eslint/lib/rules/logical-assignment-operators.js +504 -0
- package/backend/node_modules/eslint/lib/rules/max-classes-per-file.js +89 -0
- package/backend/node_modules/eslint/lib/rules/max-depth.js +156 -0
- package/backend/node_modules/eslint/lib/rules/max-len.js +440 -0
- package/backend/node_modules/eslint/lib/rules/max-lines-per-function.js +213 -0
- package/backend/node_modules/eslint/lib/rules/max-lines.js +193 -0
- package/backend/node_modules/eslint/lib/rules/max-nested-callbacks.js +117 -0
- package/backend/node_modules/eslint/lib/rules/max-params.js +102 -0
- package/backend/node_modules/eslint/lib/rules/max-statements-per-line.js +199 -0
- package/backend/node_modules/eslint/lib/rules/max-statements.js +184 -0
- package/backend/node_modules/eslint/lib/rules/multiline-comment-style.js +474 -0
- package/backend/node_modules/eslint/lib/rules/multiline-ternary.js +174 -0
- package/backend/node_modules/eslint/lib/rules/new-cap.js +276 -0
- package/backend/node_modules/eslint/lib/rules/new-parens.js +93 -0
- package/backend/node_modules/eslint/lib/rules/newline-after-var.js +253 -0
- package/backend/node_modules/eslint/lib/rules/newline-before-return.js +217 -0
- package/backend/node_modules/eslint/lib/rules/newline-per-chained-call.js +126 -0
- package/backend/node_modules/eslint/lib/rules/no-alert.js +138 -0
- package/backend/node_modules/eslint/lib/rules/no-array-constructor.js +133 -0
- package/backend/node_modules/eslint/lib/rules/no-async-promise-executor.js +39 -0
- package/backend/node_modules/eslint/lib/rules/no-await-in-loop.js +106 -0
- package/backend/node_modules/eslint/lib/rules/no-bitwise.js +119 -0
- package/backend/node_modules/eslint/lib/rules/no-buffer-constructor.js +50 -0
- package/backend/node_modules/eslint/lib/rules/no-caller.js +46 -0
- package/backend/node_modules/eslint/lib/rules/no-case-declarations.js +64 -0
- package/backend/node_modules/eslint/lib/rules/no-catch-shadow.js +82 -0
- package/backend/node_modules/eslint/lib/rules/no-class-assign.js +63 -0
- package/backend/node_modules/eslint/lib/rules/no-compare-neg-zero.js +60 -0
- package/backend/node_modules/eslint/lib/rules/no-cond-assign.js +159 -0
- package/backend/node_modules/eslint/lib/rules/no-confusing-arrow.js +92 -0
- package/backend/node_modules/eslint/lib/rules/no-console.js +207 -0
- package/backend/node_modules/eslint/lib/rules/no-const-assign.js +56 -0
- package/backend/node_modules/eslint/lib/rules/no-constant-binary-expression.js +509 -0
- package/backend/node_modules/eslint/lib/rules/no-constant-condition.js +150 -0
- package/backend/node_modules/eslint/lib/rules/no-constructor-return.js +62 -0
- package/backend/node_modules/eslint/lib/rules/no-continue.js +39 -0
- package/backend/node_modules/eslint/lib/rules/no-control-regex.js +138 -0
- package/backend/node_modules/eslint/lib/rules/no-debugger.js +43 -0
- package/backend/node_modules/eslint/lib/rules/no-delete-var.js +42 -0
- package/backend/node_modules/eslint/lib/rules/no-div-regex.js +53 -0
- package/backend/node_modules/eslint/lib/rules/no-dupe-args.js +82 -0
- package/backend/node_modules/eslint/lib/rules/no-dupe-class-members.js +104 -0
- package/backend/node_modules/eslint/lib/rules/no-dupe-else-if.js +122 -0
- package/backend/node_modules/eslint/lib/rules/no-dupe-keys.js +142 -0
- package/backend/node_modules/eslint/lib/rules/no-duplicate-case.js +71 -0
- package/backend/node_modules/eslint/lib/rules/no-duplicate-imports.js +290 -0
- package/backend/node_modules/eslint/lib/rules/no-else-return.js +405 -0
- package/backend/node_modules/eslint/lib/rules/no-empty-character-class.js +76 -0
- package/backend/node_modules/eslint/lib/rules/no-empty-function.js +167 -0
- package/backend/node_modules/eslint/lib/rules/no-empty-pattern.js +78 -0
- package/backend/node_modules/eslint/lib/rules/no-empty-static-block.js +47 -0
- package/backend/node_modules/eslint/lib/rules/no-empty.js +103 -0
- package/backend/node_modules/eslint/lib/rules/no-eq-null.js +46 -0
- package/backend/node_modules/eslint/lib/rules/no-eval.js +286 -0
- package/backend/node_modules/eslint/lib/rules/no-ex-assign.js +54 -0
- package/backend/node_modules/eslint/lib/rules/no-extend-native.js +179 -0
- package/backend/node_modules/eslint/lib/rules/no-extra-bind.js +213 -0
- package/backend/node_modules/eslint/lib/rules/no-extra-boolean-cast.js +317 -0
- package/backend/node_modules/eslint/lib/rules/no-extra-label.js +149 -0
- package/backend/node_modules/eslint/lib/rules/no-extra-parens.js +1322 -0
- package/backend/node_modules/eslint/lib/rules/no-extra-semi.js +147 -0
- package/backend/node_modules/eslint/lib/rules/no-fallthrough.js +196 -0
- package/backend/node_modules/eslint/lib/rules/no-floating-decimal.js +73 -0
- package/backend/node_modules/eslint/lib/rules/no-func-assign.js +78 -0
- package/backend/node_modules/eslint/lib/rules/no-global-assign.js +95 -0
- package/backend/node_modules/eslint/lib/rules/no-implicit-coercion.js +380 -0
- package/backend/node_modules/eslint/lib/rules/no-implicit-globals.js +146 -0
- package/backend/node_modules/eslint/lib/rules/no-implied-eval.js +132 -0
- package/backend/node_modules/eslint/lib/rules/no-import-assign.js +241 -0
- package/backend/node_modules/eslint/lib/rules/no-inline-comments.js +110 -0
- package/backend/node_modules/eslint/lib/rules/no-inner-declarations.js +110 -0
- package/backend/node_modules/eslint/lib/rules/no-invalid-regexp.js +194 -0
- package/backend/node_modules/eslint/lib/rules/no-invalid-this.js +150 -0
- package/backend/node_modules/eslint/lib/rules/no-irregular-whitespace.js +276 -0
- package/backend/node_modules/eslint/lib/rules/no-iterator.js +52 -0
- package/backend/node_modules/eslint/lib/rules/no-label-var.js +80 -0
- package/backend/node_modules/eslint/lib/rules/no-labels.js +149 -0
- package/backend/node_modules/eslint/lib/rules/no-lone-blocks.js +136 -0
- package/backend/node_modules/eslint/lib/rules/no-lonely-if.js +88 -0
- package/backend/node_modules/eslint/lib/rules/no-loop-func.js +206 -0
- package/backend/node_modules/eslint/lib/rules/no-loss-of-precision.js +214 -0
- package/backend/node_modules/eslint/lib/rules/no-magic-numbers.js +243 -0
- package/backend/node_modules/eslint/lib/rules/no-misleading-character-class.js +300 -0
- package/backend/node_modules/eslint/lib/rules/no-mixed-operators.js +229 -0
- package/backend/node_modules/eslint/lib/rules/no-mixed-requires.js +238 -0
- package/backend/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js +116 -0
- package/backend/node_modules/eslint/lib/rules/no-multi-assign.js +67 -0
- package/backend/node_modules/eslint/lib/rules/no-multi-spaces.js +141 -0
- package/backend/node_modules/eslint/lib/rules/no-multi-str.js +65 -0
- package/backend/node_modules/eslint/lib/rules/no-multiple-empty-lines.js +154 -0
- package/backend/node_modules/eslint/lib/rules/no-native-reassign.js +98 -0
- package/backend/node_modules/eslint/lib/rules/no-negated-condition.js +95 -0
- package/backend/node_modules/eslint/lib/rules/no-negated-in-lhs.js +46 -0
- package/backend/node_modules/eslint/lib/rules/no-nested-ternary.js +44 -0
- package/backend/node_modules/eslint/lib/rules/no-new-func.js +87 -0
- package/backend/node_modules/eslint/lib/rules/no-new-native-nonconstructor.js +66 -0
- package/backend/node_modules/eslint/lib/rules/no-new-object.js +67 -0
- package/backend/node_modules/eslint/lib/rules/no-new-require.js +50 -0
- package/backend/node_modules/eslint/lib/rules/no-new-symbol.js +56 -0
- package/backend/node_modules/eslint/lib/rules/no-new-wrappers.js +60 -0
- package/backend/node_modules/eslint/lib/rules/no-new.js +43 -0
- package/backend/node_modules/eslint/lib/rules/no-nonoctal-decimal-escape.js +148 -0
- package/backend/node_modules/eslint/lib/rules/no-obj-calls.js +86 -0
- package/backend/node_modules/eslint/lib/rules/no-object-constructor.js +117 -0
- package/backend/node_modules/eslint/lib/rules/no-octal-escape.js +56 -0
- package/backend/node_modules/eslint/lib/rules/no-octal.js +45 -0
- package/backend/node_modules/eslint/lib/rules/no-param-reassign.js +230 -0
- package/backend/node_modules/eslint/lib/rules/no-path-concat.js +64 -0
- package/backend/node_modules/eslint/lib/rules/no-plusplus.js +105 -0
- package/backend/node_modules/eslint/lib/rules/no-process-env.js +51 -0
- package/backend/node_modules/eslint/lib/rules/no-process-exit.js +47 -0
- package/backend/node_modules/eslint/lib/rules/no-promise-executor-return.js +263 -0
- package/backend/node_modules/eslint/lib/rules/no-proto.js +48 -0
- package/backend/node_modules/eslint/lib/rules/no-prototype-builtins.js +159 -0
- package/backend/node_modules/eslint/lib/rules/no-redeclare.js +174 -0
- package/backend/node_modules/eslint/lib/rules/no-regex-spaces.js +197 -0
- package/backend/node_modules/eslint/lib/rules/no-restricted-exports.js +193 -0
- package/backend/node_modules/eslint/lib/rules/no-restricted-globals.js +124 -0
- package/backend/node_modules/eslint/lib/rules/no-restricted-imports.js +410 -0
- package/backend/node_modules/eslint/lib/rules/no-restricted-modules.js +213 -0
- package/backend/node_modules/eslint/lib/rules/no-restricted-properties.js +168 -0
- package/backend/node_modules/eslint/lib/rules/no-restricted-syntax.js +70 -0
- package/backend/node_modules/eslint/lib/rules/no-return-assign.js +80 -0
- package/backend/node_modules/eslint/lib/rules/no-return-await.js +135 -0
- package/backend/node_modules/eslint/lib/rules/no-script-url.js +61 -0
- package/backend/node_modules/eslint/lib/rules/no-self-assign.js +183 -0
- package/backend/node_modules/eslint/lib/rules/no-self-compare.js +60 -0
- package/backend/node_modules/eslint/lib/rules/no-sequences.js +138 -0
- package/backend/node_modules/eslint/lib/rules/no-setter-return.js +226 -0
- package/backend/node_modules/eslint/lib/rules/no-shadow-restricted-names.js +65 -0
- package/backend/node_modules/eslint/lib/rules/no-shadow.js +336 -0
- package/backend/node_modules/eslint/lib/rules/no-spaced-func.js +83 -0
- package/backend/node_modules/eslint/lib/rules/no-sparse-arrays.js +50 -0
- package/backend/node_modules/eslint/lib/rules/no-sync.js +64 -0
- package/backend/node_modules/eslint/lib/rules/no-tabs.js +81 -0
- package/backend/node_modules/eslint/lib/rules/no-template-curly-in-string.js +44 -0
- package/backend/node_modules/eslint/lib/rules/no-ternary.js +41 -0
- package/backend/node_modules/eslint/lib/rules/no-this-before-super.js +331 -0
- package/backend/node_modules/eslint/lib/rules/no-throw-literal.js +51 -0
- package/backend/node_modules/eslint/lib/rules/no-trailing-spaces.js +193 -0
- package/backend/node_modules/eslint/lib/rules/no-undef-init.js +75 -0
- package/backend/node_modules/eslint/lib/rules/no-undef.js +79 -0
- package/backend/node_modules/eslint/lib/rules/no-undefined.js +86 -0
- package/backend/node_modules/eslint/lib/rules/no-underscore-dangle.js +335 -0
- package/backend/node_modules/eslint/lib/rules/no-unexpected-multiline.js +120 -0
- package/backend/node_modules/eslint/lib/rules/no-unmodified-loop-condition.js +360 -0
- package/backend/node_modules/eslint/lib/rules/no-unneeded-ternary.js +166 -0
- package/backend/node_modules/eslint/lib/rules/no-unreachable-loop.js +185 -0
- package/backend/node_modules/eslint/lib/rules/no-unreachable.js +293 -0
- package/backend/node_modules/eslint/lib/rules/no-unsafe-finally.js +111 -0
- package/backend/node_modules/eslint/lib/rules/no-unsafe-negation.js +128 -0
- package/backend/node_modules/eslint/lib/rules/no-unsafe-optional-chaining.js +205 -0
- package/backend/node_modules/eslint/lib/rules/no-unused-expressions.js +186 -0
- package/backend/node_modules/eslint/lib/rules/no-unused-labels.js +143 -0
- package/backend/node_modules/eslint/lib/rules/no-unused-private-class-members.js +195 -0
- package/backend/node_modules/eslint/lib/rules/no-unused-vars.js +718 -0
- package/backend/node_modules/eslint/lib/rules/no-use-before-define.js +348 -0
- package/backend/node_modules/eslint/lib/rules/no-useless-backreference.js +194 -0
- package/backend/node_modules/eslint/lib/rules/no-useless-call.js +90 -0
- package/backend/node_modules/eslint/lib/rules/no-useless-catch.js +57 -0
- package/backend/node_modules/eslint/lib/rules/no-useless-computed-key.js +168 -0
- package/backend/node_modules/eslint/lib/rules/no-useless-concat.js +115 -0
- package/backend/node_modules/eslint/lib/rules/no-useless-constructor.js +189 -0
- package/backend/node_modules/eslint/lib/rules/no-useless-escape.js +333 -0
- package/backend/node_modules/eslint/lib/rules/no-useless-rename.js +172 -0
- package/backend/node_modules/eslint/lib/rules/no-useless-return.js +364 -0
- package/backend/node_modules/eslint/lib/rules/no-var.js +334 -0
- package/backend/node_modules/eslint/lib/rules/no-void.js +64 -0
- package/backend/node_modules/eslint/lib/rules/no-warning-comments.js +201 -0
- package/backend/node_modules/eslint/lib/rules/no-whitespace-before-property.js +116 -0
- package/backend/node_modules/eslint/lib/rules/no-with.js +39 -0
- package/backend/node_modules/eslint/lib/rules/nonblock-statement-body-position.js +127 -0
- package/backend/node_modules/eslint/lib/rules/object-curly-newline.js +324 -0
- package/backend/node_modules/eslint/lib/rules/object-curly-spacing.js +311 -0
- package/backend/node_modules/eslint/lib/rules/object-property-newline.js +102 -0
- package/backend/node_modules/eslint/lib/rules/object-shorthand.js +520 -0
- package/backend/node_modules/eslint/lib/rules/one-var-declaration-per-line.js +95 -0
- package/backend/node_modules/eslint/lib/rules/one-var.js +567 -0
- package/backend/node_modules/eslint/lib/rules/operator-assignment.js +209 -0
- package/backend/node_modules/eslint/lib/rules/operator-linebreak.js +253 -0
- package/backend/node_modules/eslint/lib/rules/padded-blocks.js +310 -0
- package/backend/node_modules/eslint/lib/rules/padding-line-between-statements.js +590 -0
- package/backend/node_modules/eslint/lib/rules/prefer-arrow-callback.js +381 -0
- package/backend/node_modules/eslint/lib/rules/prefer-const.js +501 -0
- package/backend/node_modules/eslint/lib/rules/prefer-destructuring.js +301 -0
- package/backend/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js +191 -0
- package/backend/node_modules/eslint/lib/rules/prefer-named-capture-group.js +178 -0
- package/backend/node_modules/eslint/lib/rules/prefer-numeric-literals.js +148 -0
- package/backend/node_modules/eslint/lib/rules/prefer-object-has-own.js +114 -0
- package/backend/node_modules/eslint/lib/rules/prefer-object-spread.js +298 -0
- package/backend/node_modules/eslint/lib/rules/prefer-promise-reject-errors.js +132 -0
- package/backend/node_modules/eslint/lib/rules/prefer-reflect.js +127 -0
- package/backend/node_modules/eslint/lib/rules/prefer-regex-literals.js +507 -0
- package/backend/node_modules/eslint/lib/rules/prefer-rest-params.js +118 -0
- package/backend/node_modules/eslint/lib/rules/prefer-spread.js +87 -0
- package/backend/node_modules/eslint/lib/rules/prefer-template.js +275 -0
- package/backend/node_modules/eslint/lib/rules/quote-props.js +310 -0
- package/backend/node_modules/eslint/lib/rules/quotes.js +350 -0
- package/backend/node_modules/eslint/lib/rules/radix.js +198 -0
- package/backend/node_modules/eslint/lib/rules/require-atomic-updates.js +331 -0
- package/backend/node_modules/eslint/lib/rules/require-await.js +113 -0
- package/backend/node_modules/eslint/lib/rules/require-jsdoc.js +122 -0
- package/backend/node_modules/eslint/lib/rules/require-unicode-regexp.js +129 -0
- package/backend/node_modules/eslint/lib/rules/require-yield.js +77 -0
- package/backend/node_modules/eslint/lib/rules/rest-spread-spacing.js +123 -0
- package/backend/node_modules/eslint/lib/rules/semi-spacing.js +248 -0
- package/backend/node_modules/eslint/lib/rules/semi-style.js +158 -0
- package/backend/node_modules/eslint/lib/rules/semi.js +438 -0
- package/backend/node_modules/eslint/lib/rules/sort-imports.js +241 -0
- package/backend/node_modules/eslint/lib/rules/sort-keys.js +230 -0
- package/backend/node_modules/eslint/lib/rules/sort-vars.js +104 -0
- package/backend/node_modules/eslint/lib/rules/space-before-blocks.js +204 -0
- package/backend/node_modules/eslint/lib/rules/space-before-function-paren.js +167 -0
- package/backend/node_modules/eslint/lib/rules/space-in-parens.js +285 -0
- package/backend/node_modules/eslint/lib/rules/space-infix-ops.js +198 -0
- package/backend/node_modules/eslint/lib/rules/space-unary-ops.js +324 -0
- package/backend/node_modules/eslint/lib/rules/spaced-comment.js +385 -0
- package/backend/node_modules/eslint/lib/rules/strict.js +277 -0
- package/backend/node_modules/eslint/lib/rules/switch-colon-spacing.js +132 -0
- package/backend/node_modules/eslint/lib/rules/symbol-description.js +73 -0
- package/backend/node_modules/eslint/lib/rules/template-curly-spacing.js +144 -0
- package/backend/node_modules/eslint/lib/rules/template-tag-spacing.js +93 -0
- package/backend/node_modules/eslint/lib/rules/unicode-bom.js +73 -0
- package/backend/node_modules/eslint/lib/rules/use-isnan.js +141 -0
- package/backend/node_modules/eslint/lib/rules/utils/ast-utils.js +2282 -0
- package/backend/node_modules/eslint/lib/rules/utils/fix-tracker.js +114 -0
- package/backend/node_modules/eslint/lib/rules/utils/keywords.js +67 -0
- package/backend/node_modules/eslint/lib/rules/utils/lazy-loading-rule-map.js +115 -0
- package/backend/node_modules/eslint/lib/rules/utils/patterns/letters.js +36 -0
- package/backend/node_modules/eslint/lib/rules/utils/regular-expressions.js +42 -0
- package/backend/node_modules/eslint/lib/rules/utils/unicode/index.js +11 -0
- package/backend/node_modules/eslint/lib/rules/utils/unicode/is-combining-character.js +13 -0
- package/backend/node_modules/eslint/lib/rules/utils/unicode/is-emoji-modifier.js +13 -0
- package/backend/node_modules/eslint/lib/rules/utils/unicode/is-regional-indicator-symbol.js +13 -0
- package/backend/node_modules/eslint/lib/rules/utils/unicode/is-surrogate-pair.js +14 -0
- package/backend/node_modules/eslint/lib/rules/valid-jsdoc.js +516 -0
- package/backend/node_modules/eslint/lib/rules/valid-typeof.js +127 -0
- package/backend/node_modules/eslint/lib/rules/vars-on-top.js +157 -0
- package/backend/node_modules/eslint/lib/rules/wrap-iife.js +207 -0
- package/backend/node_modules/eslint/lib/rules/wrap-regex.js +61 -0
- package/backend/node_modules/eslint/lib/rules/yield-star-spacing.js +130 -0
- package/backend/node_modules/eslint/lib/rules/yoda.js +353 -0
- package/backend/node_modules/eslint/lib/shared/ajv.js +34 -0
- package/backend/node_modules/eslint/lib/shared/ast-utils.js +29 -0
- package/backend/node_modules/eslint/lib/shared/config-validator.js +347 -0
- package/backend/node_modules/eslint/lib/shared/deprecation-warnings.js +58 -0
- package/backend/node_modules/eslint/lib/shared/directives.js +15 -0
- package/backend/node_modules/eslint/lib/shared/logging.js +30 -0
- package/backend/node_modules/eslint/lib/shared/relative-module-resolver.js +50 -0
- package/backend/node_modules/eslint/lib/shared/runtime-info.js +167 -0
- package/backend/node_modules/eslint/lib/shared/severity.js +49 -0
- package/backend/node_modules/eslint/lib/shared/string-utils.js +60 -0
- package/backend/node_modules/eslint/lib/shared/traverser.js +195 -0
- package/backend/node_modules/eslint/lib/shared/types.js +216 -0
- package/backend/node_modules/eslint/lib/source-code/index.js +5 -0
- package/backend/node_modules/eslint/lib/source-code/source-code.js +1055 -0
- package/backend/node_modules/eslint/lib/source-code/token-store/backward-token-comment-cursor.js +57 -0
- package/backend/node_modules/eslint/lib/source-code/token-store/backward-token-cursor.js +58 -0
- package/backend/node_modules/eslint/lib/source-code/token-store/cursor.js +76 -0
- package/backend/node_modules/eslint/lib/source-code/token-store/cursors.js +90 -0
- package/backend/node_modules/eslint/lib/source-code/token-store/decorative-cursor.js +39 -0
- package/backend/node_modules/eslint/lib/source-code/token-store/filter-cursor.js +43 -0
- package/backend/node_modules/eslint/lib/source-code/token-store/forward-token-comment-cursor.js +57 -0
- package/backend/node_modules/eslint/lib/source-code/token-store/forward-token-cursor.js +63 -0
- package/backend/node_modules/eslint/lib/source-code/token-store/index.js +627 -0
- package/backend/node_modules/eslint/lib/source-code/token-store/limit-cursor.js +40 -0
- package/backend/node_modules/eslint/lib/source-code/token-store/padded-token-cursor.js +38 -0
- package/backend/node_modules/eslint/lib/source-code/token-store/skip-cursor.js +42 -0
- package/backend/node_modules/eslint/lib/source-code/token-store/utils.js +107 -0
- package/backend/node_modules/eslint/lib/unsupported-api.js +30 -0
- package/backend/node_modules/eslint/messages/all-files-ignored.js +16 -0
- package/backend/node_modules/eslint/messages/eslintrc-incompat.js +98 -0
- package/backend/node_modules/eslint/messages/eslintrc-plugins.js +24 -0
- package/backend/node_modules/eslint/messages/extend-config-missing.js +13 -0
- package/backend/node_modules/eslint/messages/failed-to-read-json.js +11 -0
- package/backend/node_modules/eslint/messages/file-not-found.js +10 -0
- package/backend/node_modules/eslint/messages/invalid-rule-options.js +17 -0
- package/backend/node_modules/eslint/messages/invalid-rule-severity.js +13 -0
- package/backend/node_modules/eslint/messages/no-config-found.js +15 -0
- package/backend/node_modules/eslint/messages/plugin-conflict.js +22 -0
- package/backend/node_modules/eslint/messages/plugin-invalid.js +16 -0
- package/backend/node_modules/eslint/messages/plugin-missing.js +19 -0
- package/backend/node_modules/eslint/messages/print-config-with-directory-path.js +8 -0
- package/backend/node_modules/eslint/messages/shared.js +18 -0
- package/backend/node_modules/eslint/messages/whitespace-found.js +11 -0
- package/backend/node_modules/eslint/package.json +181 -0
- package/backend/node_modules/undici-types/LICENSE +21 -0
- package/backend/node_modules/undici-types/README.md +6 -0
- package/backend/node_modules/undici-types/agent.d.ts +31 -0
- package/backend/node_modules/undici-types/api.d.ts +43 -0
- package/backend/node_modules/undici-types/balanced-pool.d.ts +29 -0
- package/backend/node_modules/undici-types/cache.d.ts +36 -0
- package/backend/node_modules/undici-types/client.d.ts +108 -0
- package/backend/node_modules/undici-types/connector.d.ts +34 -0
- package/backend/node_modules/undici-types/content-type.d.ts +21 -0
- package/backend/node_modules/undici-types/cookies.d.ts +28 -0
- package/backend/node_modules/undici-types/diagnostics-channel.d.ts +66 -0
- package/backend/node_modules/undici-types/dispatcher.d.ts +256 -0
- package/backend/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
- package/backend/node_modules/undici-types/errors.d.ts +149 -0
- package/backend/node_modules/undici-types/eventsource.d.ts +61 -0
- package/backend/node_modules/undici-types/fetch.d.ts +209 -0
- package/backend/node_modules/undici-types/file.d.ts +39 -0
- package/backend/node_modules/undici-types/filereader.d.ts +54 -0
- package/backend/node_modules/undici-types/formdata.d.ts +108 -0
- package/backend/node_modules/undici-types/global-dispatcher.d.ts +9 -0
- package/backend/node_modules/undici-types/global-origin.d.ts +7 -0
- package/backend/node_modules/undici-types/handlers.d.ts +15 -0
- package/backend/node_modules/undici-types/header.d.ts +4 -0
- package/backend/node_modules/undici-types/index.d.ts +71 -0
- package/backend/node_modules/undici-types/interceptors.d.ts +17 -0
- package/backend/node_modules/undici-types/mock-agent.d.ts +50 -0
- package/backend/node_modules/undici-types/mock-client.d.ts +25 -0
- package/backend/node_modules/undici-types/mock-errors.d.ts +12 -0
- package/backend/node_modules/undici-types/mock-interceptor.d.ts +93 -0
- package/backend/node_modules/undici-types/mock-pool.d.ts +25 -0
- package/backend/node_modules/undici-types/package.json +55 -0
- package/backend/node_modules/undici-types/patch.d.ts +33 -0
- package/backend/node_modules/undici-types/pool-stats.d.ts +19 -0
- package/backend/node_modules/undici-types/pool.d.ts +39 -0
- package/backend/node_modules/undici-types/proxy-agent.d.ts +28 -0
- package/backend/node_modules/undici-types/readable.d.ts +65 -0
- package/backend/node_modules/undici-types/retry-agent.d.ts +8 -0
- package/backend/node_modules/undici-types/retry-handler.d.ts +116 -0
- package/backend/node_modules/undici-types/util.d.ts +18 -0
- package/backend/node_modules/undici-types/webidl.d.ts +228 -0
- package/backend/node_modules/undici-types/websocket.d.ts +150 -0
- package/daemon/node_modules/undici-types/LICENSE +21 -0
- package/daemon/node_modules/undici-types/README.md +6 -0
- package/daemon/node_modules/undici-types/agent.d.ts +31 -0
- package/daemon/node_modules/undici-types/api.d.ts +43 -0
- package/daemon/node_modules/undici-types/balanced-pool.d.ts +29 -0
- package/daemon/node_modules/undici-types/cache.d.ts +36 -0
- package/daemon/node_modules/undici-types/client.d.ts +108 -0
- package/daemon/node_modules/undici-types/connector.d.ts +34 -0
- package/daemon/node_modules/undici-types/content-type.d.ts +21 -0
- package/daemon/node_modules/undici-types/cookies.d.ts +28 -0
- package/daemon/node_modules/undici-types/diagnostics-channel.d.ts +66 -0
- package/daemon/node_modules/undici-types/dispatcher.d.ts +256 -0
- package/daemon/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
- package/daemon/node_modules/undici-types/errors.d.ts +149 -0
- package/daemon/node_modules/undici-types/eventsource.d.ts +61 -0
- package/daemon/node_modules/undici-types/fetch.d.ts +209 -0
- package/daemon/node_modules/undici-types/file.d.ts +39 -0
- package/daemon/node_modules/undici-types/filereader.d.ts +54 -0
- package/daemon/node_modules/undici-types/formdata.d.ts +108 -0
- package/daemon/node_modules/undici-types/global-dispatcher.d.ts +9 -0
- package/daemon/node_modules/undici-types/global-origin.d.ts +7 -0
- package/daemon/node_modules/undici-types/handlers.d.ts +15 -0
- package/daemon/node_modules/undici-types/header.d.ts +4 -0
- package/daemon/node_modules/undici-types/index.d.ts +71 -0
- package/daemon/node_modules/undici-types/interceptors.d.ts +17 -0
- package/daemon/node_modules/undici-types/mock-agent.d.ts +50 -0
- package/daemon/node_modules/undici-types/mock-client.d.ts +25 -0
- package/daemon/node_modules/undici-types/mock-errors.d.ts +12 -0
- package/daemon/node_modules/undici-types/mock-interceptor.d.ts +93 -0
- package/daemon/node_modules/undici-types/mock-pool.d.ts +25 -0
- package/daemon/node_modules/undici-types/package.json +55 -0
- package/daemon/node_modules/undici-types/patch.d.ts +33 -0
- package/daemon/node_modules/undici-types/pool-stats.d.ts +19 -0
- package/daemon/node_modules/undici-types/pool.d.ts +39 -0
- package/daemon/node_modules/undici-types/proxy-agent.d.ts +28 -0
- package/daemon/node_modules/undici-types/readable.d.ts +65 -0
- package/daemon/node_modules/undici-types/retry-agent.d.ts +8 -0
- package/daemon/node_modules/undici-types/retry-handler.d.ts +116 -0
- package/daemon/node_modules/undici-types/util.d.ts +18 -0
- package/daemon/node_modules/undici-types/webidl.d.ts +228 -0
- package/daemon/node_modules/undici-types/websocket.d.ts +150 -0
- package/package.json +2 -2
|
@@ -0,0 +1,1438 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: 'Require a consistent member declaration order.'
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
> 🛑 This file is source code, not the primary documentation location! 🛑
|
|
6
|
+
>
|
|
7
|
+
> See **https://typescript-eslint.io/rules/member-ordering** for documentation.
|
|
8
|
+
|
|
9
|
+
This rule aims to standardize the way classes, interfaces, and type literals are structured and ordered.
|
|
10
|
+
A consistent ordering of fields, methods and constructors can make code easier to read, navigate, and edit.
|
|
11
|
+
|
|
12
|
+
## Options
|
|
13
|
+
|
|
14
|
+
```ts
|
|
15
|
+
interface Options {
|
|
16
|
+
default?: OrderConfig;
|
|
17
|
+
classes?: OrderConfig;
|
|
18
|
+
classExpressions?: OrderConfig;
|
|
19
|
+
interfaces?: OrderConfig;
|
|
20
|
+
typeLiterals?: OrderConfig;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
type OrderConfig = MemberType[] | SortedOrderConfig | 'never';
|
|
24
|
+
|
|
25
|
+
interface SortedOrderConfig {
|
|
26
|
+
memberTypes?: MemberType[] | 'never';
|
|
27
|
+
optionalityOrder?: 'optional-first' | 'required-first';
|
|
28
|
+
order?:
|
|
29
|
+
| 'alphabetically'
|
|
30
|
+
| 'alphabetically-case-insensitive'
|
|
31
|
+
| 'as-written'
|
|
32
|
+
| 'natural'
|
|
33
|
+
| 'natural-case-insensitive';
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
// See below for the more specific MemberType strings
|
|
37
|
+
type MemberType = string | string[];
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
You can configure `OrderConfig` options for:
|
|
41
|
+
|
|
42
|
+
- **`default`**: all constructs (used as a fallback)
|
|
43
|
+
- **`classes`**?: override ordering specifically for classes
|
|
44
|
+
- **`classExpressions`**?: override ordering specifically for class expressions
|
|
45
|
+
- **`interfaces`**?: override ordering specifically for interfaces
|
|
46
|
+
- **`typeLiterals`**?: override ordering specifically for type literals
|
|
47
|
+
|
|
48
|
+
The `OrderConfig` settings for each kind of construct may configure sorting on up to three levels:
|
|
49
|
+
|
|
50
|
+
- **`memberTypes`**: organizing on member type groups such as methods vs. properties
|
|
51
|
+
- **`optionalityOrder`**: whether to put all optional members first or all required members first
|
|
52
|
+
- **`order`**: organizing based on member names, such as alphabetically
|
|
53
|
+
|
|
54
|
+
### Groups
|
|
55
|
+
|
|
56
|
+
You can define many different groups based on different attributes of members.
|
|
57
|
+
The supported member attributes are, in order:
|
|
58
|
+
|
|
59
|
+
- **Accessibility** (`'public' | 'protected' | 'private' | '#private'`)
|
|
60
|
+
- **Decoration** (`'decorated'`): Whether the member has an explicit accessibility decorator
|
|
61
|
+
- **Kind** (`'call-signature' | 'constructor' | 'field' | 'readonly-field' | 'get' | 'method' | 'set' | 'signature' | 'readonly-signature'`)
|
|
62
|
+
|
|
63
|
+
Member attributes may be joined with a `'-'` to combine into more specific groups.
|
|
64
|
+
For example, `'public-field'` would come before `'private-field'`.
|
|
65
|
+
|
|
66
|
+
### Orders
|
|
67
|
+
|
|
68
|
+
The `order` value specifies what order members should be within a group.
|
|
69
|
+
It defaults to `as-written`, meaning any order is fine.
|
|
70
|
+
Other allowed values are:
|
|
71
|
+
|
|
72
|
+
- `alphabetically`: Sorted in a-z alphabetical order, directly using string `<` comparison (so `B` comes before `a`)
|
|
73
|
+
- `alphabetically-case-insensitive`: Sorted in a-z alphabetical order, ignoring case (so `a` comes before `B`)
|
|
74
|
+
- `natural`: Same as `alphabetically`, but using [`natural-compare-lite`](https://github.com/litejs/natural-compare-lite) for more friendly sorting of numbers
|
|
75
|
+
- `natural-case-insensitive`: Same as `alphabetically-case-insensitive`, but using [`natural-compare-lite`](https://github.com/litejs/natural-compare-lite) for more friendly sorting of numbers
|
|
76
|
+
|
|
77
|
+
### Default configuration
|
|
78
|
+
|
|
79
|
+
The default configuration looks as follows:
|
|
80
|
+
|
|
81
|
+
```jsonc
|
|
82
|
+
{
|
|
83
|
+
"default": {
|
|
84
|
+
"memberTypes": [
|
|
85
|
+
// Index signature
|
|
86
|
+
"signature",
|
|
87
|
+
"call-signature",
|
|
88
|
+
|
|
89
|
+
// Fields
|
|
90
|
+
"public-static-field",
|
|
91
|
+
"protected-static-field",
|
|
92
|
+
"private-static-field",
|
|
93
|
+
"#private-static-field",
|
|
94
|
+
|
|
95
|
+
"public-decorated-field",
|
|
96
|
+
"protected-decorated-field",
|
|
97
|
+
"private-decorated-field",
|
|
98
|
+
|
|
99
|
+
"public-instance-field",
|
|
100
|
+
"protected-instance-field",
|
|
101
|
+
"private-instance-field",
|
|
102
|
+
"#private-instance-field",
|
|
103
|
+
|
|
104
|
+
"public-abstract-field",
|
|
105
|
+
"protected-abstract-field",
|
|
106
|
+
|
|
107
|
+
"public-field",
|
|
108
|
+
"protected-field",
|
|
109
|
+
"private-field",
|
|
110
|
+
"#private-field",
|
|
111
|
+
|
|
112
|
+
"static-field",
|
|
113
|
+
"instance-field",
|
|
114
|
+
"abstract-field",
|
|
115
|
+
|
|
116
|
+
"decorated-field",
|
|
117
|
+
|
|
118
|
+
"field",
|
|
119
|
+
|
|
120
|
+
// Static initialization
|
|
121
|
+
"static-initialization",
|
|
122
|
+
|
|
123
|
+
// Constructors
|
|
124
|
+
"public-constructor",
|
|
125
|
+
"protected-constructor",
|
|
126
|
+
"private-constructor",
|
|
127
|
+
|
|
128
|
+
"constructor",
|
|
129
|
+
|
|
130
|
+
// Accessors
|
|
131
|
+
"public-static-accessor",
|
|
132
|
+
"protected-static-accessor",
|
|
133
|
+
"private-static-accessor",
|
|
134
|
+
"#private-static-accessor",
|
|
135
|
+
|
|
136
|
+
"public-decorated-accessor",
|
|
137
|
+
"protected-decorated-accessor",
|
|
138
|
+
"private-decorated-accessor",
|
|
139
|
+
|
|
140
|
+
"public-instance-accessor",
|
|
141
|
+
"protected-instance-accessor",
|
|
142
|
+
"private-instance-accessor",
|
|
143
|
+
"#private-instance-accessor",
|
|
144
|
+
|
|
145
|
+
"public-abstract-accessor",
|
|
146
|
+
"protected-abstract-accessor",
|
|
147
|
+
|
|
148
|
+
"public-accessor",
|
|
149
|
+
"protected-accessor",
|
|
150
|
+
"private-accessor",
|
|
151
|
+
"#private-accessor",
|
|
152
|
+
|
|
153
|
+
"static-accessor",
|
|
154
|
+
"instance-accessor",
|
|
155
|
+
"abstract-accessor",
|
|
156
|
+
|
|
157
|
+
"decorated-accessor",
|
|
158
|
+
|
|
159
|
+
"accessor",
|
|
160
|
+
|
|
161
|
+
// Getters
|
|
162
|
+
"public-static-get",
|
|
163
|
+
"protected-static-get",
|
|
164
|
+
"private-static-get",
|
|
165
|
+
"#private-static-get",
|
|
166
|
+
|
|
167
|
+
"public-decorated-get",
|
|
168
|
+
"protected-decorated-get",
|
|
169
|
+
"private-decorated-get",
|
|
170
|
+
|
|
171
|
+
"public-instance-get",
|
|
172
|
+
"protected-instance-get",
|
|
173
|
+
"private-instance-get",
|
|
174
|
+
"#private-instance-get",
|
|
175
|
+
|
|
176
|
+
"public-abstract-get",
|
|
177
|
+
"protected-abstract-get",
|
|
178
|
+
|
|
179
|
+
"public-get",
|
|
180
|
+
"protected-get",
|
|
181
|
+
"private-get",
|
|
182
|
+
"#private-get",
|
|
183
|
+
|
|
184
|
+
"static-get",
|
|
185
|
+
"instance-get",
|
|
186
|
+
"abstract-get",
|
|
187
|
+
|
|
188
|
+
"decorated-get",
|
|
189
|
+
|
|
190
|
+
"get",
|
|
191
|
+
|
|
192
|
+
// Setters
|
|
193
|
+
"public-static-set",
|
|
194
|
+
"protected-static-set",
|
|
195
|
+
"private-static-set",
|
|
196
|
+
"#private-static-set",
|
|
197
|
+
|
|
198
|
+
"public-decorated-set",
|
|
199
|
+
"protected-decorated-set",
|
|
200
|
+
"private-decorated-set",
|
|
201
|
+
|
|
202
|
+
"public-instance-set",
|
|
203
|
+
"protected-instance-set",
|
|
204
|
+
"private-instance-set",
|
|
205
|
+
"#private-instance-set",
|
|
206
|
+
|
|
207
|
+
"public-abstract-set",
|
|
208
|
+
"protected-abstract-set",
|
|
209
|
+
|
|
210
|
+
"public-set",
|
|
211
|
+
"protected-set",
|
|
212
|
+
"private-set",
|
|
213
|
+
"#private-set",
|
|
214
|
+
|
|
215
|
+
"static-set",
|
|
216
|
+
"instance-set",
|
|
217
|
+
"abstract-set",
|
|
218
|
+
|
|
219
|
+
"decorated-set",
|
|
220
|
+
|
|
221
|
+
"set",
|
|
222
|
+
|
|
223
|
+
// Methods
|
|
224
|
+
"public-static-method",
|
|
225
|
+
"protected-static-method",
|
|
226
|
+
"private-static-method",
|
|
227
|
+
"#private-static-method",
|
|
228
|
+
|
|
229
|
+
"public-decorated-method",
|
|
230
|
+
"protected-decorated-method",
|
|
231
|
+
"private-decorated-method",
|
|
232
|
+
|
|
233
|
+
"public-instance-method",
|
|
234
|
+
"protected-instance-method",
|
|
235
|
+
"private-instance-method",
|
|
236
|
+
"#private-instance-method",
|
|
237
|
+
|
|
238
|
+
"public-abstract-method",
|
|
239
|
+
"protected-abstract-method",
|
|
240
|
+
|
|
241
|
+
"public-method",
|
|
242
|
+
"protected-method",
|
|
243
|
+
"private-method",
|
|
244
|
+
"#private-method",
|
|
245
|
+
|
|
246
|
+
"static-method",
|
|
247
|
+
"instance-method",
|
|
248
|
+
"abstract-method",
|
|
249
|
+
|
|
250
|
+
"decorated-method",
|
|
251
|
+
|
|
252
|
+
"method",
|
|
253
|
+
],
|
|
254
|
+
},
|
|
255
|
+
}
|
|
256
|
+
```
|
|
257
|
+
|
|
258
|
+
:::note
|
|
259
|
+
The default configuration contains member group types which contain other member types.
|
|
260
|
+
This is intentional to provide better error messages.
|
|
261
|
+
:::
|
|
262
|
+
|
|
263
|
+
:::tip
|
|
264
|
+
By default, the members are not sorted.
|
|
265
|
+
If you want to sort them alphabetically, you have to provide a custom configuration.
|
|
266
|
+
:::
|
|
267
|
+
|
|
268
|
+
## Examples
|
|
269
|
+
|
|
270
|
+
### General Order on All Constructs
|
|
271
|
+
|
|
272
|
+
This config specifies the order for all constructs.
|
|
273
|
+
It ignores member types other than signatures, methods, constructors, and fields.
|
|
274
|
+
It also ignores accessibility and scope.
|
|
275
|
+
|
|
276
|
+
```jsonc
|
|
277
|
+
// .eslintrc.json
|
|
278
|
+
{
|
|
279
|
+
"rules": {
|
|
280
|
+
"@typescript-eslint/member-ordering": [
|
|
281
|
+
"error",
|
|
282
|
+
{ "default": ["signature", "method", "constructor", "field"] },
|
|
283
|
+
],
|
|
284
|
+
},
|
|
285
|
+
}
|
|
286
|
+
```
|
|
287
|
+
|
|
288
|
+
<!--tabs-->
|
|
289
|
+
|
|
290
|
+
#### ❌ Incorrect
|
|
291
|
+
|
|
292
|
+
```ts option='{ "default": ["signature", "method", "constructor", "field"] }'
|
|
293
|
+
interface Foo {
|
|
294
|
+
B: string; // -> field
|
|
295
|
+
|
|
296
|
+
new (); // -> constructor
|
|
297
|
+
|
|
298
|
+
A(): void; // -> method
|
|
299
|
+
|
|
300
|
+
[Z: string]: any; // -> signature
|
|
301
|
+
}
|
|
302
|
+
```
|
|
303
|
+
|
|
304
|
+
```ts option='{ "default": ["signature", "method", "constructor", "field"] }'
|
|
305
|
+
type Foo = {
|
|
306
|
+
B: string; // -> field
|
|
307
|
+
|
|
308
|
+
// no constructor
|
|
309
|
+
|
|
310
|
+
A(): void; // -> method
|
|
311
|
+
|
|
312
|
+
// no signature
|
|
313
|
+
};
|
|
314
|
+
```
|
|
315
|
+
|
|
316
|
+
```ts option='{ "default": ["signature", "method", "constructor", "field"] }'
|
|
317
|
+
class Foo {
|
|
318
|
+
private C: string; // -> field
|
|
319
|
+
public D: string; // -> field
|
|
320
|
+
protected static E: string; // -> field
|
|
321
|
+
|
|
322
|
+
constructor() {} // -> constructor
|
|
323
|
+
|
|
324
|
+
public static A(): void {} // -> method
|
|
325
|
+
public B(): void {} // -> method
|
|
326
|
+
|
|
327
|
+
[Z: string]: any; // -> signature
|
|
328
|
+
}
|
|
329
|
+
```
|
|
330
|
+
|
|
331
|
+
```ts option='{ "default": ["signature", "method", "constructor", "field"] }'
|
|
332
|
+
const Foo = class {
|
|
333
|
+
private C: string; // -> field
|
|
334
|
+
public D: string; // -> field
|
|
335
|
+
|
|
336
|
+
constructor() {} // -> constructor
|
|
337
|
+
|
|
338
|
+
public static A(): void {} // -> method
|
|
339
|
+
public B(): void {} // -> method
|
|
340
|
+
|
|
341
|
+
[Z: string]: any; // -> signature
|
|
342
|
+
|
|
343
|
+
protected static E: string; // -> field
|
|
344
|
+
};
|
|
345
|
+
```
|
|
346
|
+
|
|
347
|
+
#### ✅ Correct
|
|
348
|
+
|
|
349
|
+
```ts option='{ "default": ["signature", "method", "constructor", "field"] }'
|
|
350
|
+
interface Foo {
|
|
351
|
+
[Z: string]: any; // -> signature
|
|
352
|
+
|
|
353
|
+
A(): void; // -> method
|
|
354
|
+
|
|
355
|
+
new (); // -> constructor
|
|
356
|
+
|
|
357
|
+
B: string; // -> field
|
|
358
|
+
}
|
|
359
|
+
```
|
|
360
|
+
|
|
361
|
+
```ts option='{ "default": ["signature", "method", "constructor", "field"] }'
|
|
362
|
+
type Foo = {
|
|
363
|
+
// no signature
|
|
364
|
+
|
|
365
|
+
A(): void; // -> method
|
|
366
|
+
|
|
367
|
+
// no constructor
|
|
368
|
+
|
|
369
|
+
B: string; // -> field
|
|
370
|
+
};
|
|
371
|
+
```
|
|
372
|
+
|
|
373
|
+
```ts option='{ "default": ["signature", "method", "constructor", "field"] }'
|
|
374
|
+
class Foo {
|
|
375
|
+
[Z: string]: any; // -> signature
|
|
376
|
+
|
|
377
|
+
public static A(): void {} // -> method
|
|
378
|
+
public B(): void {} // -> method
|
|
379
|
+
|
|
380
|
+
constructor() {} // -> constructor
|
|
381
|
+
|
|
382
|
+
private C: string; // -> field
|
|
383
|
+
public D: string; // -> field
|
|
384
|
+
protected static E: string; // -> field
|
|
385
|
+
}
|
|
386
|
+
```
|
|
387
|
+
|
|
388
|
+
```ts option='{ "default": ["signature", "method", "constructor", "field"] }'
|
|
389
|
+
const Foo = class {
|
|
390
|
+
[Z: string]: any; // -> signature
|
|
391
|
+
|
|
392
|
+
public static A(): void {} // -> method
|
|
393
|
+
public B(): void {} // -> method
|
|
394
|
+
|
|
395
|
+
constructor() {} // -> constructor
|
|
396
|
+
|
|
397
|
+
private C: string; // -> field
|
|
398
|
+
public D: string; // -> field
|
|
399
|
+
protected static E: string; // -> field
|
|
400
|
+
};
|
|
401
|
+
```
|
|
402
|
+
|
|
403
|
+
### Classes
|
|
404
|
+
|
|
405
|
+
#### Public Instance Methods Before Public Static Fields
|
|
406
|
+
|
|
407
|
+
This config specifies that public instance methods should come first before public static fields.
|
|
408
|
+
Everything else can be placed anywhere.
|
|
409
|
+
It doesn't apply to interfaces or type literals as accessibility and scope are not part of them.
|
|
410
|
+
|
|
411
|
+
```jsonc
|
|
412
|
+
// .eslintrc.json
|
|
413
|
+
{
|
|
414
|
+
"rules": {
|
|
415
|
+
"@typescript-eslint/member-ordering": [
|
|
416
|
+
"error",
|
|
417
|
+
{ "default": ["public-instance-method", "public-static-field"] },
|
|
418
|
+
],
|
|
419
|
+
},
|
|
420
|
+
}
|
|
421
|
+
```
|
|
422
|
+
|
|
423
|
+
<!--tabs-->
|
|
424
|
+
|
|
425
|
+
##### ❌ Incorrect
|
|
426
|
+
|
|
427
|
+
```ts option='{ "default": ["public-instance-method", "public-static-field"] }'
|
|
428
|
+
class Foo {
|
|
429
|
+
private C: string; // (irrelevant)
|
|
430
|
+
|
|
431
|
+
public D: string; // (irrelevant)
|
|
432
|
+
|
|
433
|
+
public static E: string; // -> public static field
|
|
434
|
+
|
|
435
|
+
constructor() {} // (irrelevant)
|
|
436
|
+
|
|
437
|
+
public static A(): void {} // (irrelevant)
|
|
438
|
+
|
|
439
|
+
[Z: string]: any; // (irrelevant)
|
|
440
|
+
|
|
441
|
+
public B(): void {} // -> public instance method
|
|
442
|
+
}
|
|
443
|
+
```
|
|
444
|
+
|
|
445
|
+
```ts option='{ "default": ["public-instance-method", "public-static-field"] }'
|
|
446
|
+
const Foo = class {
|
|
447
|
+
private C: string; // (irrelevant)
|
|
448
|
+
|
|
449
|
+
[Z: string]: any; // (irrelevant)
|
|
450
|
+
|
|
451
|
+
public static E: string; // -> public static field
|
|
452
|
+
|
|
453
|
+
public D: string; // (irrelevant)
|
|
454
|
+
|
|
455
|
+
constructor() {} // (irrelevant)
|
|
456
|
+
|
|
457
|
+
public static A(): void {} // (irrelevant)
|
|
458
|
+
|
|
459
|
+
public B(): void {} // -> public instance method
|
|
460
|
+
};
|
|
461
|
+
```
|
|
462
|
+
|
|
463
|
+
##### ✅ Correct
|
|
464
|
+
|
|
465
|
+
```ts option='{ "default": ["public-instance-method", "public-static-field"] }'
|
|
466
|
+
class Foo {
|
|
467
|
+
public B(): void {} // -> public instance method
|
|
468
|
+
|
|
469
|
+
private C: string; // (irrelevant)
|
|
470
|
+
|
|
471
|
+
public D: string; // (irrelevant)
|
|
472
|
+
|
|
473
|
+
public static E: string; // -> public static field
|
|
474
|
+
|
|
475
|
+
constructor() {} // (irrelevant)
|
|
476
|
+
|
|
477
|
+
public static A(): void {} // (irrelevant)
|
|
478
|
+
|
|
479
|
+
[Z: string]: any; // (irrelevant)
|
|
480
|
+
}
|
|
481
|
+
```
|
|
482
|
+
|
|
483
|
+
```ts option='{ "default": ["public-instance-method", "public-static-field"] }'
|
|
484
|
+
const Foo = class {
|
|
485
|
+
public B(): void {} // -> public instance method
|
|
486
|
+
|
|
487
|
+
private C: string; // (irrelevant)
|
|
488
|
+
|
|
489
|
+
[Z: string]: any; // (irrelevant)
|
|
490
|
+
|
|
491
|
+
public D: string; // (irrelevant)
|
|
492
|
+
|
|
493
|
+
constructor() {} // (irrelevant)
|
|
494
|
+
|
|
495
|
+
public static A(): void {} // (irrelevant)
|
|
496
|
+
|
|
497
|
+
public static E: string; // -> public static field
|
|
498
|
+
};
|
|
499
|
+
```
|
|
500
|
+
|
|
501
|
+
#### Static Fields Before Instance Fields
|
|
502
|
+
|
|
503
|
+
This config specifies that static fields should come before instance fields, with public static fields first.
|
|
504
|
+
It doesn't apply to interfaces or type literals as accessibility and scope are not part of them.
|
|
505
|
+
|
|
506
|
+
```jsonc
|
|
507
|
+
{
|
|
508
|
+
"rules": {
|
|
509
|
+
"@typescript-eslint/member-ordering": [
|
|
510
|
+
"error",
|
|
511
|
+
{ "default": ["public-static-field", "static-field", "instance-field"] },
|
|
512
|
+
],
|
|
513
|
+
},
|
|
514
|
+
}
|
|
515
|
+
```
|
|
516
|
+
|
|
517
|
+
<!--tabs-->
|
|
518
|
+
|
|
519
|
+
##### ❌ Incorrect
|
|
520
|
+
|
|
521
|
+
```ts option='{ "default": ["public-static-field", "static-field", "instance-field"] }'
|
|
522
|
+
class Foo {
|
|
523
|
+
private E: string; // -> instance field
|
|
524
|
+
|
|
525
|
+
private static B: string; // -> static field
|
|
526
|
+
protected static C: string; // -> static field
|
|
527
|
+
private static D: string; // -> static field
|
|
528
|
+
|
|
529
|
+
public static A: string; // -> public static field
|
|
530
|
+
|
|
531
|
+
[Z: string]: any; // (irrelevant)
|
|
532
|
+
}
|
|
533
|
+
```
|
|
534
|
+
|
|
535
|
+
```ts option='{ "default": ["public-static-field", "static-field", "instance-field"] }'
|
|
536
|
+
const foo = class {
|
|
537
|
+
public T(): void {} // method (irrelevant)
|
|
538
|
+
|
|
539
|
+
private static B: string; // -> static field
|
|
540
|
+
|
|
541
|
+
constructor() {} // constructor (irrelevant)
|
|
542
|
+
|
|
543
|
+
private E: string; // -> instance field
|
|
544
|
+
|
|
545
|
+
protected static C: string; // -> static field
|
|
546
|
+
private static D: string; // -> static field
|
|
547
|
+
|
|
548
|
+
[Z: string]: any; // signature (irrelevant)
|
|
549
|
+
|
|
550
|
+
public static A: string; // -> public static field
|
|
551
|
+
};
|
|
552
|
+
```
|
|
553
|
+
|
|
554
|
+
##### ✅ Correct
|
|
555
|
+
|
|
556
|
+
```ts option='{ "default": ["public-static-field", "static-field", "instance-field"] }'
|
|
557
|
+
class Foo {
|
|
558
|
+
public static A: string; // -> public static field
|
|
559
|
+
|
|
560
|
+
private static B: string; // -> static field
|
|
561
|
+
protected static C: string; // -> static field
|
|
562
|
+
private static D: string; // -> static field
|
|
563
|
+
|
|
564
|
+
private E: string; // -> instance field
|
|
565
|
+
|
|
566
|
+
[Z: string]: any; // (irrelevant)
|
|
567
|
+
}
|
|
568
|
+
```
|
|
569
|
+
|
|
570
|
+
```ts option='{ "default": ["public-static-field", "static-field", "instance-field"] }'
|
|
571
|
+
const foo = class {
|
|
572
|
+
[Z: string]: any; // -> signature (irrelevant)
|
|
573
|
+
|
|
574
|
+
public static A: string; // -> public static field
|
|
575
|
+
|
|
576
|
+
constructor() {} // -> constructor (irrelevant)
|
|
577
|
+
|
|
578
|
+
private static B: string; // -> static field
|
|
579
|
+
protected static C: string; // -> static field
|
|
580
|
+
private static D: string; // -> static field
|
|
581
|
+
|
|
582
|
+
private E: string; // -> instance field
|
|
583
|
+
|
|
584
|
+
public T(): void {} // -> method (irrelevant)
|
|
585
|
+
};
|
|
586
|
+
```
|
|
587
|
+
|
|
588
|
+
#### Class Declarations
|
|
589
|
+
|
|
590
|
+
This config only specifies an order for classes: methods, then the constructor, then fields.
|
|
591
|
+
It does not apply to class expressions (use `classExpressions` for them).
|
|
592
|
+
Default settings will be used for class declarations and all other syntax constructs other than class declarations.
|
|
593
|
+
|
|
594
|
+
```jsonc
|
|
595
|
+
// .eslintrc.json
|
|
596
|
+
{
|
|
597
|
+
"rules": {
|
|
598
|
+
"@typescript-eslint/member-ordering": [
|
|
599
|
+
"error",
|
|
600
|
+
{ "classes": ["method", "constructor", "field"] },
|
|
601
|
+
],
|
|
602
|
+
},
|
|
603
|
+
}
|
|
604
|
+
```
|
|
605
|
+
|
|
606
|
+
<!--tabs-->
|
|
607
|
+
|
|
608
|
+
##### ❌ Incorrect
|
|
609
|
+
|
|
610
|
+
```ts option='{ "classes": ["method", "constructor", "field"] }'
|
|
611
|
+
class Foo {
|
|
612
|
+
private C: string; // -> field
|
|
613
|
+
public D: string; // -> field
|
|
614
|
+
protected static E: string; // -> field
|
|
615
|
+
|
|
616
|
+
constructor() {} // -> constructor
|
|
617
|
+
|
|
618
|
+
public static A(): void {} // -> method
|
|
619
|
+
public B(): void {} // -> method
|
|
620
|
+
}
|
|
621
|
+
```
|
|
622
|
+
|
|
623
|
+
##### ✅ Correct
|
|
624
|
+
|
|
625
|
+
```ts option='{ "classes": ["method", "constructor", "field"] }'
|
|
626
|
+
class Foo {
|
|
627
|
+
public static A(): void {} // -> method
|
|
628
|
+
public B(): void {} // -> method
|
|
629
|
+
|
|
630
|
+
constructor() {} // -> constructor
|
|
631
|
+
|
|
632
|
+
private C: string; // -> field
|
|
633
|
+
public D: string; // -> field
|
|
634
|
+
protected static E: string; // -> field
|
|
635
|
+
}
|
|
636
|
+
```
|
|
637
|
+
|
|
638
|
+
#### Class Expressions
|
|
639
|
+
|
|
640
|
+
This config only specifies an order for classes expressions: methods, then the constructor, then fields.
|
|
641
|
+
It does not apply to class declarations (use `classes` for them).
|
|
642
|
+
Default settings will be used for class declarations and all other syntax constructs other than class expressions.
|
|
643
|
+
|
|
644
|
+
```jsonc
|
|
645
|
+
// .eslintrc.json
|
|
646
|
+
{
|
|
647
|
+
"rules": {
|
|
648
|
+
"@typescript-eslint/member-ordering": [
|
|
649
|
+
"error",
|
|
650
|
+
{ "classExpressions": ["method", "constructor", "field"] },
|
|
651
|
+
],
|
|
652
|
+
},
|
|
653
|
+
}
|
|
654
|
+
```
|
|
655
|
+
|
|
656
|
+
<!--tabs-->
|
|
657
|
+
|
|
658
|
+
##### ❌ Incorrect
|
|
659
|
+
|
|
660
|
+
```ts option='{ "classExpressions": ["method", "constructor", "field"] }'
|
|
661
|
+
const foo = class {
|
|
662
|
+
private C: string; // -> field
|
|
663
|
+
public D: string; // -> field
|
|
664
|
+
protected static E: string; // -> field
|
|
665
|
+
|
|
666
|
+
constructor() {} // -> constructor
|
|
667
|
+
|
|
668
|
+
public static A(): void {} // -> method
|
|
669
|
+
public B(): void {} // -> method
|
|
670
|
+
};
|
|
671
|
+
```
|
|
672
|
+
|
|
673
|
+
##### ✅ Correct
|
|
674
|
+
|
|
675
|
+
```ts option='{ "classExpressions": ["method", "constructor", "field"] }'
|
|
676
|
+
const foo = class {
|
|
677
|
+
public static A(): void {} // -> method
|
|
678
|
+
public B(): void {} // -> method
|
|
679
|
+
|
|
680
|
+
constructor() {} // -> constructor
|
|
681
|
+
|
|
682
|
+
private C: string; // -> field
|
|
683
|
+
public D: string; // -> field
|
|
684
|
+
protected static E: string; // -> field
|
|
685
|
+
};
|
|
686
|
+
```
|
|
687
|
+
|
|
688
|
+
### Interfaces
|
|
689
|
+
|
|
690
|
+
This config only specifies an order for interfaces: signatures, then methods, then constructors, then fields.
|
|
691
|
+
It does not apply to type literals (use `typeLiterals` for them).
|
|
692
|
+
Default settings will be used for type literals and all other syntax constructs other than class expressions.
|
|
693
|
+
|
|
694
|
+
:::note
|
|
695
|
+
These member types are the only ones allowed for `interfaces`.
|
|
696
|
+
:::
|
|
697
|
+
|
|
698
|
+
```jsonc
|
|
699
|
+
// .eslintrc.json
|
|
700
|
+
{
|
|
701
|
+
"rules": {
|
|
702
|
+
"@typescript-eslint/member-ordering": [
|
|
703
|
+
"error",
|
|
704
|
+
{ "interfaces": ["signature", "method", "constructor", "field"] },
|
|
705
|
+
],
|
|
706
|
+
},
|
|
707
|
+
}
|
|
708
|
+
```
|
|
709
|
+
|
|
710
|
+
<!--tabs-->
|
|
711
|
+
|
|
712
|
+
#### ❌ Incorrect
|
|
713
|
+
|
|
714
|
+
```ts option='{ "interfaces": ["signature", "method", "constructor", "field"] }'
|
|
715
|
+
interface Foo {
|
|
716
|
+
B: string; // -> field
|
|
717
|
+
|
|
718
|
+
new (); // -> constructor
|
|
719
|
+
|
|
720
|
+
A(): void; // -> method
|
|
721
|
+
|
|
722
|
+
[Z: string]: any; // -> signature
|
|
723
|
+
}
|
|
724
|
+
```
|
|
725
|
+
|
|
726
|
+
#### ✅ Correct
|
|
727
|
+
|
|
728
|
+
```ts option='{ "interfaces": ["signature", "method", "constructor", "field"] }'
|
|
729
|
+
interface Foo {
|
|
730
|
+
[Z: string]: any; // -> signature
|
|
731
|
+
|
|
732
|
+
A(): void; // -> method
|
|
733
|
+
|
|
734
|
+
new (); // -> constructor
|
|
735
|
+
|
|
736
|
+
B: string; // -> field
|
|
737
|
+
}
|
|
738
|
+
```
|
|
739
|
+
|
|
740
|
+
### Type Literals
|
|
741
|
+
|
|
742
|
+
This config only specifies an order for type literals: signatures, then methods, then constructors, then fields.
|
|
743
|
+
It does not apply to interfaces (use `interfaces` for them).
|
|
744
|
+
Default settings will be used for interfaces and all other syntax constructs other than class expressions.
|
|
745
|
+
|
|
746
|
+
:::note
|
|
747
|
+
These member types are the only ones allowed for `typeLiterals`.
|
|
748
|
+
:::
|
|
749
|
+
|
|
750
|
+
```jsonc
|
|
751
|
+
// .eslintrc.json
|
|
752
|
+
{
|
|
753
|
+
"rules": {
|
|
754
|
+
"@typescript-eslint/member-ordering": [
|
|
755
|
+
"error",
|
|
756
|
+
{ "typeLiterals": ["signature", "method", "constructor", "field"] },
|
|
757
|
+
],
|
|
758
|
+
},
|
|
759
|
+
}
|
|
760
|
+
```
|
|
761
|
+
|
|
762
|
+
<!--tabs-->
|
|
763
|
+
|
|
764
|
+
#### ❌ Incorrect
|
|
765
|
+
|
|
766
|
+
```ts option='{ "typeLiterals": ["signature", "method", "constructor", "field"] }'
|
|
767
|
+
type Foo = {
|
|
768
|
+
B: string; // -> field
|
|
769
|
+
|
|
770
|
+
A(): void; // -> method
|
|
771
|
+
|
|
772
|
+
new (); // -> constructor
|
|
773
|
+
|
|
774
|
+
[Z: string]: any; // -> signature
|
|
775
|
+
};
|
|
776
|
+
```
|
|
777
|
+
|
|
778
|
+
#### ✅ Correct
|
|
779
|
+
|
|
780
|
+
```ts option='{ "typeLiterals": ["signature", "method", "constructor", "field"] }'
|
|
781
|
+
type Foo = {
|
|
782
|
+
[Z: string]: any; // -> signature
|
|
783
|
+
|
|
784
|
+
A(): void; // -> method
|
|
785
|
+
|
|
786
|
+
new (); // -> constructor
|
|
787
|
+
|
|
788
|
+
B: string; // -> field
|
|
789
|
+
};
|
|
790
|
+
```
|
|
791
|
+
|
|
792
|
+
### Sorting Options
|
|
793
|
+
|
|
794
|
+
#### Sorting Alphabetically Within Member Groups
|
|
795
|
+
|
|
796
|
+
This config specifies that within each `memberTypes` group, members are in an alphabetic case-sensitive order.
|
|
797
|
+
The default member order will be applied if `memberTypes` is not specified.
|
|
798
|
+
You can see the default order in [Default Configuration](#default-configuration).
|
|
799
|
+
|
|
800
|
+
```jsonc
|
|
801
|
+
// .eslintrc.json
|
|
802
|
+
{
|
|
803
|
+
"rules": {
|
|
804
|
+
"@typescript-eslint/member-ordering": [
|
|
805
|
+
"error",
|
|
806
|
+
{
|
|
807
|
+
"default": {
|
|
808
|
+
"order": "alphabetically",
|
|
809
|
+
},
|
|
810
|
+
},
|
|
811
|
+
],
|
|
812
|
+
},
|
|
813
|
+
}
|
|
814
|
+
```
|
|
815
|
+
|
|
816
|
+
<!--tabs-->
|
|
817
|
+
|
|
818
|
+
##### ❌ Incorrect
|
|
819
|
+
|
|
820
|
+
```ts option='{"default":{"order":"alphabetically"}}'
|
|
821
|
+
interface Foo {
|
|
822
|
+
a: x;
|
|
823
|
+
B: x;
|
|
824
|
+
c: x;
|
|
825
|
+
|
|
826
|
+
B(): void;
|
|
827
|
+
c(): void;
|
|
828
|
+
a(): void;
|
|
829
|
+
}
|
|
830
|
+
```
|
|
831
|
+
|
|
832
|
+
##### ✅ Correct
|
|
833
|
+
|
|
834
|
+
```ts option='{"default":{"order":"alphabetically"}}'
|
|
835
|
+
interface Foo {
|
|
836
|
+
B: x;
|
|
837
|
+
a: x;
|
|
838
|
+
c: x;
|
|
839
|
+
|
|
840
|
+
B(): void;
|
|
841
|
+
a(): void;
|
|
842
|
+
c(): void;
|
|
843
|
+
}
|
|
844
|
+
```
|
|
845
|
+
|
|
846
|
+
#### Sorting Alphabetically Within Custom Member Groups
|
|
847
|
+
|
|
848
|
+
This config specifies that within each custom `memberTypes` group, members are in an alphabetic case-sensitive order.
|
|
849
|
+
|
|
850
|
+
```jsonc
|
|
851
|
+
// .eslintrc.json
|
|
852
|
+
{
|
|
853
|
+
"rules": {
|
|
854
|
+
"@typescript-eslint/member-ordering": [
|
|
855
|
+
"error",
|
|
856
|
+
{
|
|
857
|
+
"default": {
|
|
858
|
+
"memberTypes": ["method", "field"],
|
|
859
|
+
"order": "alphabetically",
|
|
860
|
+
},
|
|
861
|
+
},
|
|
862
|
+
],
|
|
863
|
+
},
|
|
864
|
+
}
|
|
865
|
+
```
|
|
866
|
+
|
|
867
|
+
<!--tabs-->
|
|
868
|
+
|
|
869
|
+
##### ❌ Incorrect
|
|
870
|
+
|
|
871
|
+
```ts option='{"default":{"memberTypes":["method","field"],"order":"alphabetically"}}'
|
|
872
|
+
interface Foo {
|
|
873
|
+
B(): void;
|
|
874
|
+
c(): void;
|
|
875
|
+
a(): void;
|
|
876
|
+
|
|
877
|
+
a: x;
|
|
878
|
+
B: x;
|
|
879
|
+
c: x;
|
|
880
|
+
}
|
|
881
|
+
```
|
|
882
|
+
|
|
883
|
+
##### ✅ Correct
|
|
884
|
+
|
|
885
|
+
```ts option='{"default":{"memberTypes":["method","field"],"order":"alphabetically"}}'
|
|
886
|
+
interface Foo {
|
|
887
|
+
B(): void;
|
|
888
|
+
a(): void;
|
|
889
|
+
c(): void;
|
|
890
|
+
|
|
891
|
+
B: x;
|
|
892
|
+
a: x;
|
|
893
|
+
c: x;
|
|
894
|
+
}
|
|
895
|
+
```
|
|
896
|
+
|
|
897
|
+
#### Sorting Alphabetically Case Insensitive Within Member Groups
|
|
898
|
+
|
|
899
|
+
This config specifies that within each `memberTypes` group, members are in an alphabetic case-insensitive order.
|
|
900
|
+
The default member order will be applied if `memberTypes` is not specified.
|
|
901
|
+
You can see the default order in [Default Configuration](#default-configuration).
|
|
902
|
+
|
|
903
|
+
```jsonc
|
|
904
|
+
// .eslintrc.json
|
|
905
|
+
{
|
|
906
|
+
"rules": {
|
|
907
|
+
"@typescript-eslint/member-ordering": [
|
|
908
|
+
"error",
|
|
909
|
+
{
|
|
910
|
+
"default": {
|
|
911
|
+
"order": "alphabetically-case-insensitive",
|
|
912
|
+
},
|
|
913
|
+
},
|
|
914
|
+
],
|
|
915
|
+
},
|
|
916
|
+
}
|
|
917
|
+
```
|
|
918
|
+
|
|
919
|
+
<!--tabs-->
|
|
920
|
+
|
|
921
|
+
##### ❌ Incorrect
|
|
922
|
+
|
|
923
|
+
```ts option='{"default":{"order":"alphabetically-case-insensitive"}}'
|
|
924
|
+
interface Foo {
|
|
925
|
+
B: x;
|
|
926
|
+
a: x;
|
|
927
|
+
c: x;
|
|
928
|
+
|
|
929
|
+
B(): void;
|
|
930
|
+
c(): void;
|
|
931
|
+
a(): void;
|
|
932
|
+
}
|
|
933
|
+
```
|
|
934
|
+
|
|
935
|
+
##### ✅ Correct
|
|
936
|
+
|
|
937
|
+
```ts option='{"default":{"order":"alphabetically-case-insensitive"}}'
|
|
938
|
+
interface Foo {
|
|
939
|
+
a: x;
|
|
940
|
+
B: x;
|
|
941
|
+
c: x;
|
|
942
|
+
|
|
943
|
+
a(): void;
|
|
944
|
+
B(): void;
|
|
945
|
+
c(): void;
|
|
946
|
+
}
|
|
947
|
+
```
|
|
948
|
+
|
|
949
|
+
#### Sorting Alphabetically Ignoring Member Groups
|
|
950
|
+
|
|
951
|
+
This config specifies that members are all sorted in an alphabetic case-sensitive order.
|
|
952
|
+
It ignores any member group types completely by specifying `"never"` for `memberTypes`.
|
|
953
|
+
|
|
954
|
+
```jsonc
|
|
955
|
+
// .eslintrc.json
|
|
956
|
+
{
|
|
957
|
+
"rules": {
|
|
958
|
+
"@typescript-eslint/member-ordering": [
|
|
959
|
+
"error",
|
|
960
|
+
{ "default": { "memberTypes": "never", "order": "alphabetically" } },
|
|
961
|
+
],
|
|
962
|
+
},
|
|
963
|
+
}
|
|
964
|
+
```
|
|
965
|
+
|
|
966
|
+
<!--tabs-->
|
|
967
|
+
|
|
968
|
+
##### ❌ Incorrect
|
|
969
|
+
|
|
970
|
+
```ts option='{ "default": { "memberTypes": "never", "order": "alphabetically" } }'
|
|
971
|
+
interface Foo {
|
|
972
|
+
b(): void;
|
|
973
|
+
a: boolean;
|
|
974
|
+
|
|
975
|
+
[a: string]: number; // Order doesn't matter (no sortable identifier)
|
|
976
|
+
new (): Bar; // Order doesn't matter (no sortable identifier)
|
|
977
|
+
(): Baz; // Order doesn't matter (no sortable identifier)
|
|
978
|
+
}
|
|
979
|
+
```
|
|
980
|
+
|
|
981
|
+
##### ✅ Correct
|
|
982
|
+
|
|
983
|
+
```ts option='{ "default": { "memberTypes": "never", "order": "alphabetically" } }'
|
|
984
|
+
interface Foo {
|
|
985
|
+
a: boolean;
|
|
986
|
+
b(): void;
|
|
987
|
+
|
|
988
|
+
[a: string]: number; // Order doesn't matter (no sortable identifier)
|
|
989
|
+
new (): Bar; // Order doesn't matter (no sortable identifier)
|
|
990
|
+
(): Baz; // Order doesn't matter (no sortable identifier)
|
|
991
|
+
}
|
|
992
|
+
```
|
|
993
|
+
|
|
994
|
+
#### Sorting Optional Members First or Last
|
|
995
|
+
|
|
996
|
+
The `optionalityOrder` option may be enabled to place all optional members in a group at the beginning or end of that group.
|
|
997
|
+
|
|
998
|
+
This config places all optional members before all required members:
|
|
999
|
+
|
|
1000
|
+
```jsonc
|
|
1001
|
+
// .eslintrc.json
|
|
1002
|
+
{
|
|
1003
|
+
"rules": {
|
|
1004
|
+
"@typescript-eslint/member-ordering": [
|
|
1005
|
+
"error",
|
|
1006
|
+
{
|
|
1007
|
+
"default": {
|
|
1008
|
+
"optionalityOrder": "optional-first",
|
|
1009
|
+
"order": "alphabetically",
|
|
1010
|
+
},
|
|
1011
|
+
},
|
|
1012
|
+
],
|
|
1013
|
+
},
|
|
1014
|
+
}
|
|
1015
|
+
```
|
|
1016
|
+
|
|
1017
|
+
<!--tabs-->
|
|
1018
|
+
|
|
1019
|
+
##### ❌ Incorrect
|
|
1020
|
+
|
|
1021
|
+
```ts option='{ "default": { "optionalityOrder": "optional-first", "order": "alphabetically" } }'
|
|
1022
|
+
interface Foo {
|
|
1023
|
+
a: boolean;
|
|
1024
|
+
b?: number;
|
|
1025
|
+
c: string;
|
|
1026
|
+
}
|
|
1027
|
+
```
|
|
1028
|
+
|
|
1029
|
+
##### ✅ Correct
|
|
1030
|
+
|
|
1031
|
+
```ts option='{ "default": { "optionalityOrder": "optional-first", "order": "alphabetically" } }'
|
|
1032
|
+
interface Foo {
|
|
1033
|
+
b?: number;
|
|
1034
|
+
a: boolean;
|
|
1035
|
+
c: string;
|
|
1036
|
+
}
|
|
1037
|
+
```
|
|
1038
|
+
|
|
1039
|
+
<!--/tabs-->
|
|
1040
|
+
|
|
1041
|
+
This config places all required members before all optional members:
|
|
1042
|
+
|
|
1043
|
+
```jsonc
|
|
1044
|
+
// .eslintrc.json
|
|
1045
|
+
{
|
|
1046
|
+
"rules": {
|
|
1047
|
+
"@typescript-eslint/member-ordering": [
|
|
1048
|
+
"error",
|
|
1049
|
+
{
|
|
1050
|
+
"default": {
|
|
1051
|
+
"optionalityOrder": "required-first",
|
|
1052
|
+
"order": "alphabetically",
|
|
1053
|
+
},
|
|
1054
|
+
},
|
|
1055
|
+
],
|
|
1056
|
+
},
|
|
1057
|
+
}
|
|
1058
|
+
```
|
|
1059
|
+
|
|
1060
|
+
<!--tabs-->
|
|
1061
|
+
|
|
1062
|
+
##### ❌ Incorrect
|
|
1063
|
+
|
|
1064
|
+
```ts option='{ "default": { "optionalityOrder": "required-first", "order": "alphabetically" } }'
|
|
1065
|
+
interface Foo {
|
|
1066
|
+
a: boolean;
|
|
1067
|
+
b?: number;
|
|
1068
|
+
c: string;
|
|
1069
|
+
}
|
|
1070
|
+
```
|
|
1071
|
+
|
|
1072
|
+
##### ✅ Correct
|
|
1073
|
+
|
|
1074
|
+
```ts option='{ "default": { "optionalityOrder": "required-first", "order": "alphabetically" } }'
|
|
1075
|
+
interface Foo {
|
|
1076
|
+
a: boolean;
|
|
1077
|
+
c: string;
|
|
1078
|
+
b?: number;
|
|
1079
|
+
}
|
|
1080
|
+
```
|
|
1081
|
+
|
|
1082
|
+
<!--/tabs-->
|
|
1083
|
+
|
|
1084
|
+
## All Supported Options
|
|
1085
|
+
|
|
1086
|
+
### Member Types (Granular Form)
|
|
1087
|
+
|
|
1088
|
+
There are multiple ways to specify the member types.
|
|
1089
|
+
The most explicit and granular form is the following:
|
|
1090
|
+
|
|
1091
|
+
```jsonc
|
|
1092
|
+
[
|
|
1093
|
+
// Index signature
|
|
1094
|
+
"signature",
|
|
1095
|
+
"readonly-signature",
|
|
1096
|
+
|
|
1097
|
+
// Fields
|
|
1098
|
+
"public-static-field",
|
|
1099
|
+
"public-static-readonly-field",
|
|
1100
|
+
"protected-static-field",
|
|
1101
|
+
"protected-static-readonly-field",
|
|
1102
|
+
"private-static-field",
|
|
1103
|
+
"private-static-readonly-field",
|
|
1104
|
+
"#private-static-field",
|
|
1105
|
+
"#private-static-readonly-field",
|
|
1106
|
+
|
|
1107
|
+
"public-decorated-field",
|
|
1108
|
+
"public-decorated-readonly-field",
|
|
1109
|
+
"protected-decorated-field",
|
|
1110
|
+
"protected-decorated-readonly-field",
|
|
1111
|
+
"private-decorated-field",
|
|
1112
|
+
"private-decorated-readonly-field",
|
|
1113
|
+
|
|
1114
|
+
"public-instance-field",
|
|
1115
|
+
"public-instance-readonly-field",
|
|
1116
|
+
"protected-instance-field",
|
|
1117
|
+
"protected-instance-readonly-field",
|
|
1118
|
+
"private-instance-field",
|
|
1119
|
+
"private-instance-readonly-field",
|
|
1120
|
+
"#private-instance-field",
|
|
1121
|
+
"#private-instance-readonly-field",
|
|
1122
|
+
|
|
1123
|
+
"public-abstract-field",
|
|
1124
|
+
"public-abstract-readonly-field",
|
|
1125
|
+
"protected-abstract-field",
|
|
1126
|
+
"protected-abstract-readonly-field",
|
|
1127
|
+
|
|
1128
|
+
"public-field",
|
|
1129
|
+
"public-readonly-field",
|
|
1130
|
+
"protected-field",
|
|
1131
|
+
"protected-readonly-field",
|
|
1132
|
+
"private-field",
|
|
1133
|
+
"private-readonly-field"
|
|
1134
|
+
"#private-field",
|
|
1135
|
+
"#private-readonly-field"
|
|
1136
|
+
|
|
1137
|
+
"static-field",
|
|
1138
|
+
"static-readonly-field",
|
|
1139
|
+
"instance-field",
|
|
1140
|
+
"instance-readonly-field"
|
|
1141
|
+
"abstract-field",
|
|
1142
|
+
"abstract-readonly-field",
|
|
1143
|
+
|
|
1144
|
+
"decorated-field",
|
|
1145
|
+
"decorated-readonly-field",
|
|
1146
|
+
|
|
1147
|
+
"field",
|
|
1148
|
+
"readonly-field",
|
|
1149
|
+
|
|
1150
|
+
// Static initialization
|
|
1151
|
+
"static-initialization",
|
|
1152
|
+
|
|
1153
|
+
// Constructors
|
|
1154
|
+
"public-constructor",
|
|
1155
|
+
"protected-constructor",
|
|
1156
|
+
"private-constructor",
|
|
1157
|
+
|
|
1158
|
+
// Getters
|
|
1159
|
+
"public-static-get",
|
|
1160
|
+
"protected-static-get",
|
|
1161
|
+
"private-static-get",
|
|
1162
|
+
"#private-static-get",
|
|
1163
|
+
|
|
1164
|
+
"public-decorated-get",
|
|
1165
|
+
"protected-decorated-get",
|
|
1166
|
+
"private-decorated-get",
|
|
1167
|
+
|
|
1168
|
+
"public-instance-get",
|
|
1169
|
+
"protected-instance-get",
|
|
1170
|
+
"private-instance-get",
|
|
1171
|
+
"#private-instance-get",
|
|
1172
|
+
|
|
1173
|
+
"public-abstract-get",
|
|
1174
|
+
"protected-abstract-get",
|
|
1175
|
+
|
|
1176
|
+
"public-get",
|
|
1177
|
+
"protected-get",
|
|
1178
|
+
"private-get",
|
|
1179
|
+
"#private-get",
|
|
1180
|
+
|
|
1181
|
+
"static-get",
|
|
1182
|
+
"instance-get",
|
|
1183
|
+
"abstract-get",
|
|
1184
|
+
|
|
1185
|
+
"decorated-get",
|
|
1186
|
+
|
|
1187
|
+
"get",
|
|
1188
|
+
|
|
1189
|
+
// Setters
|
|
1190
|
+
"public-static-set",
|
|
1191
|
+
"protected-static-set",
|
|
1192
|
+
"private-static-set",
|
|
1193
|
+
"#private-static-set",
|
|
1194
|
+
|
|
1195
|
+
"public-decorated-set",
|
|
1196
|
+
"protected-decorated-set",
|
|
1197
|
+
"private-decorated-set",
|
|
1198
|
+
|
|
1199
|
+
"public-instance-set",
|
|
1200
|
+
"protected-instance-set",
|
|
1201
|
+
"private-instance-set",
|
|
1202
|
+
"#private-instance-set",
|
|
1203
|
+
|
|
1204
|
+
"public-abstract-set",
|
|
1205
|
+
"protected-abstract-set",
|
|
1206
|
+
|
|
1207
|
+
"public-set",
|
|
1208
|
+
"protected-set",
|
|
1209
|
+
"private-set",
|
|
1210
|
+
|
|
1211
|
+
"static-set",
|
|
1212
|
+
"instance-set",
|
|
1213
|
+
"abstract-set",
|
|
1214
|
+
|
|
1215
|
+
"decorated-set",
|
|
1216
|
+
|
|
1217
|
+
"set",
|
|
1218
|
+
|
|
1219
|
+
// Methods
|
|
1220
|
+
"public-static-method",
|
|
1221
|
+
"protected-static-method",
|
|
1222
|
+
"private-static-method",
|
|
1223
|
+
"#private-static-method",
|
|
1224
|
+
"public-decorated-method",
|
|
1225
|
+
"protected-decorated-method",
|
|
1226
|
+
"private-decorated-method",
|
|
1227
|
+
"public-instance-method",
|
|
1228
|
+
"protected-instance-method",
|
|
1229
|
+
"private-instance-method",
|
|
1230
|
+
"#private-instance-method",
|
|
1231
|
+
"public-abstract-method",
|
|
1232
|
+
"protected-abstract-method"
|
|
1233
|
+
]
|
|
1234
|
+
```
|
|
1235
|
+
|
|
1236
|
+
:::note
|
|
1237
|
+
If you only specify some of the possible types, the non-specified ones can have any particular order.
|
|
1238
|
+
This means that they can be placed before, within or after the specified types and the linter won't complain about it.
|
|
1239
|
+
:::
|
|
1240
|
+
|
|
1241
|
+
### Member Group Types (With Accessibility, Ignoring Scope)
|
|
1242
|
+
|
|
1243
|
+
It is also possible to group member types by their accessibility (`static`, `instance`, `abstract`), ignoring their scope.
|
|
1244
|
+
|
|
1245
|
+
```jsonc
|
|
1246
|
+
[
|
|
1247
|
+
// Index signature
|
|
1248
|
+
// No accessibility for index signature.
|
|
1249
|
+
|
|
1250
|
+
// Fields
|
|
1251
|
+
"public-field", // = ["public-static-field", "public-instance-field"]
|
|
1252
|
+
"protected-field", // = ["protected-static-field", "protected-instance-field"]
|
|
1253
|
+
"private-field", // = ["private-static-field", "private-instance-field"]
|
|
1254
|
+
|
|
1255
|
+
// Static initialization
|
|
1256
|
+
// No accessibility for static initialization.
|
|
1257
|
+
|
|
1258
|
+
// Constructors
|
|
1259
|
+
// Only the accessibility of constructors is configurable. See below.
|
|
1260
|
+
|
|
1261
|
+
// Getters
|
|
1262
|
+
"public-get", // = ["public-static-get", "public-instance-get"]
|
|
1263
|
+
"protected-get", // = ["protected-static-get", "protected-instance-get"]
|
|
1264
|
+
"private-get", // = ["private-static-get", "private-instance-get"]
|
|
1265
|
+
|
|
1266
|
+
// Setters
|
|
1267
|
+
"public-set", // = ["public-static-set", "public-instance-set"]
|
|
1268
|
+
"protected-set", // = ["protected-static-set", "protected-instance-set"]
|
|
1269
|
+
"private-set", // = ["private-static-set", "private-instance-set"]
|
|
1270
|
+
|
|
1271
|
+
// Methods
|
|
1272
|
+
"public-method", // = ["public-static-method", "public-instance-method"]
|
|
1273
|
+
"protected-method", // = ["protected-static-method", "protected-instance-method"]
|
|
1274
|
+
"private-method", // = ["private-static-method", "private-instance-method"]
|
|
1275
|
+
]
|
|
1276
|
+
```
|
|
1277
|
+
|
|
1278
|
+
### Member Group Types (With Accessibility and a Decorator)
|
|
1279
|
+
|
|
1280
|
+
It is also possible to group methods or fields with a decorator separately, optionally specifying
|
|
1281
|
+
their accessibility.
|
|
1282
|
+
|
|
1283
|
+
```jsonc
|
|
1284
|
+
[
|
|
1285
|
+
// Index signature
|
|
1286
|
+
// No decorators for index signature.
|
|
1287
|
+
|
|
1288
|
+
// Fields
|
|
1289
|
+
"public-decorated-field",
|
|
1290
|
+
"protected-decorated-field",
|
|
1291
|
+
"private-decorated-field",
|
|
1292
|
+
|
|
1293
|
+
"decorated-field", // = ["public-decorated-field", "protected-decorated-field", "private-decorated-field"]
|
|
1294
|
+
|
|
1295
|
+
// Static initialization
|
|
1296
|
+
// No decorators for static initialization.
|
|
1297
|
+
|
|
1298
|
+
// Constructors
|
|
1299
|
+
// There are no decorators for constructors.
|
|
1300
|
+
|
|
1301
|
+
// Getters
|
|
1302
|
+
"public-decorated-get",
|
|
1303
|
+
"protected-decorated-get",
|
|
1304
|
+
"private-decorated-get",
|
|
1305
|
+
|
|
1306
|
+
"decorated-get", // = ["public-decorated-get", "protected-decorated-get", "private-decorated-get"]
|
|
1307
|
+
|
|
1308
|
+
// Setters
|
|
1309
|
+
"public-decorated-set",
|
|
1310
|
+
"protected-decorated-set",
|
|
1311
|
+
"private-decorated-set",
|
|
1312
|
+
|
|
1313
|
+
"decorated-set", // = ["public-decorated-set", "protected-decorated-set", "private-decorated-set"]
|
|
1314
|
+
|
|
1315
|
+
// Methods
|
|
1316
|
+
"public-decorated-method",
|
|
1317
|
+
"protected-decorated-method",
|
|
1318
|
+
"private-decorated-method",
|
|
1319
|
+
|
|
1320
|
+
"decorated-method", // = ["public-decorated-method", "protected-decorated-method", "private-decorated-method"]
|
|
1321
|
+
]
|
|
1322
|
+
```
|
|
1323
|
+
|
|
1324
|
+
### Member Group Types (With Scope, Ignoring Accessibility)
|
|
1325
|
+
|
|
1326
|
+
Another option is to group the member types by their scope (`public`, `protected`, `private`), ignoring their accessibility.
|
|
1327
|
+
|
|
1328
|
+
```jsonc
|
|
1329
|
+
[
|
|
1330
|
+
// Index signature
|
|
1331
|
+
// No scope for index signature.
|
|
1332
|
+
|
|
1333
|
+
// Fields
|
|
1334
|
+
"static-field", // = ["public-static-field", "protected-static-field", "private-static-field"]
|
|
1335
|
+
"instance-field", // = ["public-instance-field", "protected-instance-field", "private-instance-field"]
|
|
1336
|
+
"abstract-field", // = ["public-abstract-field", "protected-abstract-field"]
|
|
1337
|
+
|
|
1338
|
+
// Static initialization
|
|
1339
|
+
// No scope for static initialization.
|
|
1340
|
+
|
|
1341
|
+
// Constructors
|
|
1342
|
+
"constructor", // = ["public-constructor", "protected-constructor", "private-constructor"]
|
|
1343
|
+
|
|
1344
|
+
// Getters
|
|
1345
|
+
"static-get", // = ["public-static-get", "protected-static-get", "private-static-get"]
|
|
1346
|
+
"instance-get", // = ["public-instance-get", "protected-instance-get", "private-instance-get"]
|
|
1347
|
+
"abstract-get", // = ["public-abstract-get", "protected-abstract-get"]
|
|
1348
|
+
|
|
1349
|
+
// Setters
|
|
1350
|
+
"static-set", // = ["public-static-set", "protected-static-set", "private-static-set"]
|
|
1351
|
+
"instance-set", // = ["public-instance-set", "protected-instance-set", "private-instance-set"]
|
|
1352
|
+
"abstract-set", // = ["public-abstract-set", "protected-abstract-set"]
|
|
1353
|
+
|
|
1354
|
+
// Methods
|
|
1355
|
+
"static-method", // = ["public-static-method", "protected-static-method", "private-static-method"]
|
|
1356
|
+
"instance-method", // = ["public-instance-method", "protected-instance-method", "private-instance-method"]
|
|
1357
|
+
"abstract-method", // = ["public-abstract-method", "protected-abstract-method"]
|
|
1358
|
+
]
|
|
1359
|
+
```
|
|
1360
|
+
|
|
1361
|
+
### Member Group Types (With Scope and Accessibility)
|
|
1362
|
+
|
|
1363
|
+
The third grouping option is to ignore both scope and accessibility.
|
|
1364
|
+
|
|
1365
|
+
```jsonc
|
|
1366
|
+
[
|
|
1367
|
+
// Index signature
|
|
1368
|
+
// No grouping for index signature.
|
|
1369
|
+
|
|
1370
|
+
// Fields
|
|
1371
|
+
"field", // = ["public-static-field", "protected-static-field", "private-static-field", "public-instance-field", "protected-instance-field", "private-instance-field",
|
|
1372
|
+
// "public-abstract-field", "protected-abstract-field"]
|
|
1373
|
+
|
|
1374
|
+
// Static initialization
|
|
1375
|
+
// No grouping for static initialization.
|
|
1376
|
+
|
|
1377
|
+
// Constructors
|
|
1378
|
+
// Only the accessibility of constructors is configurable.
|
|
1379
|
+
|
|
1380
|
+
// Getters
|
|
1381
|
+
"get", // = ["public-static-get", "protected-static-get", "private-static-get", "public-instance-get", "protected-instance-get", "private-instance-get",
|
|
1382
|
+
// "public-abstract-get", "protected-abstract-get"]
|
|
1383
|
+
|
|
1384
|
+
// Setters
|
|
1385
|
+
"set", // = ["public-static-set", "protected-static-set", "private-static-set", "public-instance-set", "protected-instance-set", "private-instance-set",
|
|
1386
|
+
// "public-abstract-set", "protected-abstract-set"]
|
|
1387
|
+
|
|
1388
|
+
// Methods
|
|
1389
|
+
"method", // = ["public-static-method", "protected-static-method", "private-static-method", "public-instance-method", "protected-instance-method", "private-instance-method",
|
|
1390
|
+
// "public-abstract-method", "protected-abstract-method"]
|
|
1391
|
+
]
|
|
1392
|
+
```
|
|
1393
|
+
|
|
1394
|
+
### Member Group Types (Readonly Fields)
|
|
1395
|
+
|
|
1396
|
+
It is possible to group fields by their `readonly` modifiers.
|
|
1397
|
+
|
|
1398
|
+
```jsonc
|
|
1399
|
+
[
|
|
1400
|
+
// Index signature
|
|
1401
|
+
"readonly-signature",
|
|
1402
|
+
"signature",
|
|
1403
|
+
|
|
1404
|
+
// Fields
|
|
1405
|
+
"readonly-field", // = ["public-static-readonly-field", "protected-static-readonly-field", "private-static-readonly-field", "public-instance-readonly-field", "protected-instance-readonly-field", "private-instance-readonly-field", "public-abstract-readonly-field", "protected-abstract-readonly-field"]
|
|
1406
|
+
"field", // = ["public-static-field", "protected-static-field", "private-static-field", "public-instance-field", "protected-instance-field", "private-instance-field", "public-abstract-field", "protected-abstract-field"]
|
|
1407
|
+
]
|
|
1408
|
+
```
|
|
1409
|
+
|
|
1410
|
+
### Grouping Different Member Types at the Same Rank
|
|
1411
|
+
|
|
1412
|
+
It is also possible to group different member types at the same rank.
|
|
1413
|
+
|
|
1414
|
+
```jsonc
|
|
1415
|
+
[
|
|
1416
|
+
// Index signature
|
|
1417
|
+
"signature",
|
|
1418
|
+
|
|
1419
|
+
// Fields
|
|
1420
|
+
"field",
|
|
1421
|
+
|
|
1422
|
+
// Static initialization
|
|
1423
|
+
"static-initialization",
|
|
1424
|
+
|
|
1425
|
+
// Constructors
|
|
1426
|
+
"constructor",
|
|
1427
|
+
|
|
1428
|
+
// Getters and Setters at the same rank
|
|
1429
|
+
["get", "set"],
|
|
1430
|
+
|
|
1431
|
+
// Methods
|
|
1432
|
+
"method",
|
|
1433
|
+
]
|
|
1434
|
+
```
|
|
1435
|
+
|
|
1436
|
+
## When Not To Use It
|
|
1437
|
+
|
|
1438
|
+
If you don't care about the general order of your members, then you will not need this rule.
|