UNPKG

eslint-config-agent

Version:

ESLint configuration package with TypeScript support

11 lines (9 loc) 217 B
/** * Valid: Class property initialized in constructor */ export class User { name: string; constructor(name: string = 'default') { this.name = name; // ✅ Valid: Property initialized in constructor } }