Skip to content

chore: clean up leftover tslint disable statements #20243

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 12, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/material/core/option/optgroup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ const _MatOptgroupMixinBase: CanDisableCtor & typeof MatOptgroupBase =
let _uniqueOptgroupIdCounter = 0;

@Directive()
// tslint:disable-next-line:class-name
export class _MatOptgroupBase extends _MatOptgroupMixinBase implements CanDisable {
/** Label for the option group. */
@Input() label: string;
Expand Down
1 change: 0 additions & 1 deletion src/material/core/option/option.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ export const MAT_OPTION_PARENT_COMPONENT =


@Directive()
// tslint:disable-next-line:class-name
export class _MatOptionBase implements FocusableOption, AfterViewChecked, OnDestroy {
private _selected = false;
private _active = false;
Expand Down
1 change: 0 additions & 1 deletion src/material/dialog/dialog-container.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ export function throwMatDialogContentAlreadyAttachedError() {
* animations as these are left to implementers of the dialog container.
*/
@Directive()
// tslint:disable-next-line:class-name
export abstract class _MatDialogContainerBase extends BasePortalOutlet {
protected _document: Document;

Expand Down
1 change: 0 additions & 1 deletion src/material/dialog/dialog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ export const MAT_DIALOG_SCROLL_STRATEGY_PROVIDER = {
* for arbitrary dialog refs and dialog container components.
*/
@Directive()
// tslint:disable-next-line:class-name
export abstract class _MatDialogBase<C extends _MatDialogContainerBase> implements OnDestroy {
private _openDialogsAtThisLevel: MatDialogRef<any>[] = [];
private readonly _afterAllClosedAtThisLevel = new Subject<void>();
Expand Down
1 change: 0 additions & 1 deletion src/material/snack-bar/snack-bar-container.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ import {MatSnackBarConfig} from './snack-bar-config';
* Internal interface for a snack bar container.
* @docs-private
*/
// tslint:disable-next-line:class-name
export interface _SnackBarContainer {
snackBarConfig: MatSnackBarConfig;
_onExit: Subject<any>;
Expand Down