Skip to content

Commit 3828b7e

Browse files
authored
chore: clean up leftover tslint disable statements (#20243)
These statements are from PRs that were opened before we added our own rule for validating class names.
1 parent 8050e7e commit 3828b7e

File tree

5 files changed

+0
-5
lines changed

5 files changed

+0
-5
lines changed

src/material/core/option/optgroup.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ const _MatOptgroupMixinBase: CanDisableCtor & typeof MatOptgroupBase =
2828
let _uniqueOptgroupIdCounter = 0;
2929

3030
@Directive()
31-
// tslint:disable-next-line:class-name
3231
export class _MatOptgroupBase extends _MatOptgroupMixinBase implements CanDisable {
3332
/** Label for the option group. */
3433
@Input() label: string;

src/material/core/option/option.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ export const MAT_OPTION_PARENT_COMPONENT =
6262

6363

6464
@Directive()
65-
// tslint:disable-next-line:class-name
6665
export class _MatOptionBase implements FocusableOption, AfterViewChecked, OnDestroy {
6766
private _selected = false;
6867
private _active = false;

src/material/dialog/dialog-container.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ export function throwMatDialogContentAlreadyAttachedError() {
5353
* animations as these are left to implementers of the dialog container.
5454
*/
5555
@Directive()
56-
// tslint:disable-next-line:class-name
5756
export abstract class _MatDialogContainerBase extends BasePortalOutlet {
5857
protected _document: Document;
5958

src/material/dialog/dialog.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ export const MAT_DIALOG_SCROLL_STRATEGY_PROVIDER = {
7070
* for arbitrary dialog refs and dialog container components.
7171
*/
7272
@Directive()
73-
// tslint:disable-next-line:class-name
7473
export abstract class _MatDialogBase<C extends _MatDialogContainerBase> implements OnDestroy {
7574
private _openDialogsAtThisLevel: MatDialogRef<any>[] = [];
7675
private readonly _afterAllClosedAtThisLevel = new Subject<void>();

src/material/snack-bar/snack-bar-container.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ import {MatSnackBarConfig} from './snack-bar-config';
3535
* Internal interface for a snack bar container.
3636
* @docs-private
3737
*/
38-
// tslint:disable-next-line:class-name
3938
export interface _SnackBarContainer {
4039
snackBarConfig: MatSnackBarConfig;
4140
_onExit: Subject<any>;

0 commit comments

Comments
 (0)