Fix locals packages list #617
TICS annotations
Annotations
github-actions / TICS annotations
Unsafe call of a(n) `error` type typed value.
Blocking
Level: 3, Category: Best Practices
Line: 16, TypeScript Coding Standard: no-unsafe-call
Avoid calling an any type value. The any type can sometimes leak into your codebase. The arguments to, and return value of calling an any typed variable are not checked at all by TypeScript, so it creates a potential safety hole
Rule-help: https://typescript-eslint.io/rules/no-unsafe-call
github-actions / TICS annotations
Unsafe assignment of an error typed value.
Blocking
Level: 3, Category: Style
Line: 16, TypeScript Coding Standard: no-unsafe-assignment
Avoid assigning any to variables and properties
Rule-help: https://typescript-eslint.io/rules/no-unsafe-assignment
github-actions / TICS annotations
Unsafe call of a(n) `error` type typed value.
Blocking
Level: 3, Category: Best Practices
Line: 19, TypeScript Coding Standard: no-unsafe-call
Avoid calling an any type value. The any type can sometimes leak into your codebase. The arguments to, and return value of calling an any typed variable are not checked at all by TypeScript, so it creates a potential safety hole
Rule-help: https://typescript-eslint.io/rules/no-unsafe-call
github-actions / TICS annotations
Unsafe assignment of an error typed value.
Blocking
Level: 3, Category: Style
Line: 19, TypeScript Coding Standard: no-unsafe-assignment
Avoid assigning any to variables and properties
Rule-help: https://typescript-eslint.io/rules/no-unsafe-assignment
github-actions / TICS annotations
Unsafe call of a(n) `any` typed value.
Blocking
Level: 3, Category: Best Practices
Line: 21, TypeScript Coding Standard: no-unsafe-call
Avoid calling an any type value. The any type can sometimes leak into your codebase. The arguments to, and return value of calling an any typed variable are not checked at all by TypeScript, so it creates a potential safety hole
Rule-help: https://typescript-eslint.io/rules/no-unsafe-call
github-actions / TICS annotations
Unsafe return of a value of type `any`.
Blocking
Level: 3, Category: Best Practices
Line: 21, TypeScript Coding Standard: no-unsafe-return
Avoid returning any from a function. The any type can sometimes leak into your codebase. Returned any typed values not checked at all by TypeScript, so it creates a potential safety hole
Rule-help: https://typescript-eslint.io/rules/no-unsafe-return
github-actions / TICS annotations
Unsafe member access .map on an `any` value.
Blocking
Level: 3, Category: Best Practices
Line: 22, TypeScript Coding Standard: no-unsafe-member-access
Avoid member access on any typed variables. The any type can sometimes leak into your codebase. Member access on any typed variables is not checked at all by TypeScript, so it creates a potential safety hole
Rule-help: https://typescript-eslint.io/rules/no-unsafe-member-access
github-actions / TICS annotations
Unsafe assignment of an `any` value.
Blocking
Level: 3, Category: Style
Line: 22, TypeScript Coding Standard: no-unsafe-assignment
Avoid assigning any to variables and properties
Rule-help: https://typescript-eslint.io/rules/no-unsafe-assignment
github-actions / TICS annotations
Unsafe call of a(n) `any` typed value.
Blocking
Level: 3, Category: Best Practices
Line: 23, TypeScript Coding Standard: no-unsafe-call
Avoid calling an any type value. The any type can sometimes leak into your codebase. The arguments to, and return value of calling an any typed variable are not checked at all by TypeScript, so it creates a potential safety hole
Rule-help: https://typescript-eslint.io/rules/no-unsafe-call
github-actions / TICS annotations
Unsafe member access .name on an `any` value.
Blocking
Level: 3, Category: Best Practices
Line: 23, TypeScript Coding Standard: no-unsafe-member-access
Avoid member access on any typed variables. The any type can sometimes leak into your codebase. Member access on any typed variables is not checked at all by TypeScript, so it creates a potential safety hole
Rule-help: https://typescript-eslint.io/rules/no-unsafe-member-access
github-actions / TICS annotations
Unsafe member access .toSorted on an `any` value.
Blocking
Level: 3, Category: Best Practices
Line: 23, TypeScript Coding Standard: no-unsafe-member-access
Avoid member access on any typed variables. The any type can sometimes leak into your codebase. Member access on any typed variables is not checked at all by TypeScript, so it creates a potential safety hole
Rule-help: https://typescript-eslint.io/rules/no-unsafe-member-access
github-actions / TICS annotations
Unsafe return of a value of type `any`.
Blocking
Level: 3, Category: Best Practices
Line: 23, TypeScript Coding Standard: no-unsafe-return
Avoid returning any from a function. The any type can sometimes leak into your codebase. Returned any typed values not checked at all by TypeScript, so it creates a potential safety hole
Rule-help: https://typescript-eslint.io/rules/no-unsafe-return
github-actions / TICS annotations
Unsafe call of a(n) `error` type typed value.
Blocking
Level: 3, Category: Best Practices
Line: 26, TypeScript Coding Standard: no-unsafe-call
Avoid calling an any type value. The any type can sometimes leak into your codebase. The arguments to, and return value of calling an any typed variable are not checked at all by TypeScript, so it creates a potential safety hole
Rule-help: https://typescript-eslint.io/rules/no-unsafe-call
github-actions / TICS annotations
Unsafe assignment of an error typed value.
Blocking
Level: 3, Category: Style
Line: 26, TypeScript Coding Standard: no-unsafe-assignment
Avoid assigning any to variables and properties
Rule-help: https://typescript-eslint.io/rules/no-unsafe-assignment
github-actions / TICS annotations
Unsafe call of a(n) `error` type typed value.
Blocking
Level: 3, Category: Best Practices
Line: 28, TypeScript Coding Standard: no-unsafe-call
Avoid calling an any type value. The any type can sometimes leak into your codebase. The arguments to, and return value of calling an any typed variable are not checked at all by TypeScript, so it creates a potential safety hole
Rule-help: https://typescript-eslint.io/rules/no-unsafe-call
github-actions / TICS annotations
Unsafe member access .slice on an `error` typed value.
Blocking
Level: 3, Category: Best Practices
Line: 28, TypeScript Coding Standard: no-unsafe-member-access
Avoid member access on any typed variables. The any type can sometimes leak into your codebase. Member access on any typed variables is not checked at all by TypeScript, so it creates a potential safety hole
Rule-help: https://typescript-eslint.io/rules/no-unsafe-member-access
github-actions / TICS annotations
Unsafe return of a value of type error.
Blocking
Level: 3, Category: Best Practices
Line: 28, TypeScript Coding Standard: no-unsafe-return
Avoid returning any from a function. The any type can sometimes leak into your codebase. Returned any typed values not checked at all by TypeScript, so it creates a potential safety hole
Rule-help: https://typescript-eslint.io/rules/no-unsafe-return
github-actions / TICS annotations
Unsafe call of a(n) `error` type typed value.
Blocking
Level: 3, Category: Best Practices
Line: 35, TypeScript Coding Standard: no-unsafe-call
Avoid calling an any type value. The any type can sometimes leak into your codebase. The arguments to, and return value of calling an any typed variable are not checked at all by TypeScript, so it creates a potential safety hole
Rule-help: https://typescript-eslint.io/rules/no-unsafe-call
github-actions / TICS annotations
Unsafe assignment of an error typed value.
Blocking
Level: 3, Category: Style
Line: 35, TypeScript Coding Standard: no-unsafe-assignment
Avoid assigning any to variables and properties
Rule-help: https://typescript-eslint.io/rules/no-unsafe-assignment
github-actions / TICS annotations
Unsafe return of a value of type error.
Blocking
Level: 3, Category: Best Practices
Line: 46, TypeScript Coding Standard: no-unsafe-return
Avoid returning any from a function. The any type can sometimes leak into your codebase. Returned any typed values not checked at all by TypeScript, so it creates a potential safety hole
Rule-help: https://typescript-eslint.io/rules/no-unsafe-return
github-actions / TICS annotations
Unsafe member access .length on an `error` typed value.
Blocking
Level: 3, Category: Best Practices
Line: 52, TypeScript Coding Standard: no-unsafe-member-access
Avoid member access on any typed variables. The any type can sometimes leak into your codebase. Member access on any typed variables is not checked at all by TypeScript, so it creates a potential safety hole
Rule-help: https://typescript-eslint.io/rules/no-unsafe-member-access
github-actions / TICS annotations
Unsafe return of a value of type error.
Blocking
Level: 3, Category: Best Practices
Line: 54, TypeScript Coding Standard: no-unsafe-return
Avoid returning any from a function. The any type can sometimes leak into your codebase. Returned any typed values not checked at all by TypeScript, so it creates a potential safety hole
Rule-help: https://typescript-eslint.io/rules/no-unsafe-return
github-actions / TICS annotations
Unsafe assignment of an error typed value.
Blocking
Level: 3, Category: Style
Line: 57, TypeScript Coding Standard: no-unsafe-assignment
Avoid assigning any to variables and properties
Rule-help: https://typescript-eslint.io/rules/no-unsafe-assignment
github-actions / TICS annotations
Unsafe assignment of an error typed value.
Blocking
Level: 3, Category: Style
Line: 58, TypeScript Coding Standard: no-unsafe-assignment
Avoid assigning any to variables and properties
Rule-help: https://typescript-eslint.io/rules/no-unsafe-assignment
github-actions / TICS annotations
Unsafe assignment of an error typed value.
Blocking
Level: 3, Category: Style
Line: 63, TypeScript Coding Standard: no-unsafe-assignment
Avoid assigning any to variables and properties
Rule-help: https://typescript-eslint.io/rules/no-unsafe-assignment