Remove unneeded lint suppression

This commit is contained in:
Daniel Imms 2024-04-01 10:02:05 -07:00
parent cdbe485a21
commit ad545a18d3
No known key found for this signature in database
GPG key ID: E5CF412B63651C69

View file

@ -3,8 +3,6 @@
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
/* eslint-disable @typescript-eslint/naming-convention */
import { IBufferCell } from '@xterm/xterm';
export type XtermAttributes = Omit<IBufferCell, 'getWidth' | 'getChars' | 'getCode'> & { clone?(): XtermAttributes };