ESLint plugin for TypeScript with custom linting rules.
npm install --save-dev @luma-dev/eslint-plugin-luma-ts
Add to your ESLint configuration:
export default [
{
plugins: {
"luma-ts": require("@luma-dev/eslint-plugin-luma-ts"),
},
rules: {
"luma-ts/require-satisfies-in-tls": "error",
"luma-ts/no-as-unknown-as": "error",
"luma-ts/no-explicit-return-is": "error",
"luma-ts/prefer-immutable": "error",
},
},
];
Or use the recommended configuration:
export default [require("@luma-dev/eslint-plugin-luma-ts").configs.recommended];
Requires satisfies in Template-Literal-Strings.
Template literal expressions must use the satisfies
operator with allowed types.
Valid:
`Hello ${name satisfies string}`;
`Count: ${count satisfies number}`;
`BigInt: ${value satisfies bigint}`;
Invalid:
`Hello ${name}`; // Missing satisfies
`Count: ${count}`; // Missing satisfies
Options:
types
: Array of allowed type names (default:['string', 'number', 'bigint']
)
Example configuration:
{
'luma-ts/require-satisfies-in-tls': ['error', { types: ['string', 'CustomType'] }]
}
Disallows the as unknown as T
form of type casting and suggests using parse or type-guard functions instead.
This rule helps maintain type safety by preventing dangerous double type assertions that bypass TypeScript's type checking.
Valid:
// Using type guards
function isString(value: unknown): value is string {
return typeof value === "string";
}
if (isString(value)) {
console.log(value); // value is safely typed as string
}
// Using parse functions
function parseUser(data: unknown): User {
// validate and parse data
return parsedUser;
}
const user = parseUser(data);
// Single type assertion (still allowed, though not recommended)
const value = data as string;
Invalid:
const value = data as unknown as string; // Double assertion bypasses type safety
const user = response as unknown as User; // Dangerous pattern
const items = data as unknown as string[]; // Should use proper validation
This rule has no configuration options.
Example configuration:
{
'luma-ts/no-as-unknown-as': 'error'
}
Disallows explicit type predicate return types in function declarations and encourages TypeScript inference or alternative patterns.
This rule helps maintain cleaner code by preventing explicit type predicate declarations in return types. Type predicates can still be used through type annotations on variables or with the satisfies
operator.
Valid:
// Let TypeScript infer the return type
const f = (a: string) => a === "b";
// Using satisfies operator
const f = ((a: string) => a === "b") satisfies (a: string) => a is "b";
// Type annotation on variable declaration
const f: (a: string) => a is "b" = (a: string) => a === "b";
// Regular boolean return type
function isString(value: unknown): boolean {
return typeof value === "string";
}
Invalid:
// Explicit type predicate in arrow function
const f = (a: string): a is "b" => a === "b";
// Explicit type predicate in function declaration
function isString(value: unknown): value is string {
return typeof value === "string";
}
// Explicit type predicate in function expression
const isNumber = function (value: unknown): value is number {
return typeof value === "number";
};
This rule has no configuration options.
Example configuration:
{
'luma-ts/no-explicit-return-is': 'error'
}
Encourages the use of immutable patterns by recommending readonly
modifiers and immutable array/object types.
This rule helps maintain immutability in TypeScript code by suggesting the use of readonly
for properties and recommending ReadonlyArray<T>
or readonly T[]
over mutable array types.
Valid:
// Using readonly for object properties
interface User {
readonly id: string;
readonly name: string;
}
// Using ReadonlyArray
function processItems(items: ReadonlyArray<string>) {
// items cannot be mutated
}
// Using readonly array syntax
function processNumbers(numbers: readonly number[]) {
// numbers cannot be mutated
}
// Const assertions for literal values
const config = {
host: "localhost",
port: 3000,
} as const;
Invalid:
// Mutable object properties
interface User {
id: string; // Should be readonly
name: string; // Should be readonly
}
// Mutable array parameters
function processItems(items: string[]) {
// Should use readonly array type
}
This rule has no configuration options.
Example configuration:
{
'luma-ts/prefer-immutable': 'error'
}