update explicit exclusions to new plugin name

This commit is contained in:
Brendan Forster 2019-01-23 10:31:13 -04:00
parent fb631ec299
commit ec08a240b6
6 changed files with 7 additions and 7 deletions

View file

@ -1,4 +1,4 @@
/* eslint-disable typescript/interface-name-prefix */
/* eslint-disable @typescript-eslint/interface-name-prefix */
declare namespace CodeMirror {
interface EditorConfiguration {

View file

@ -1,4 +1,4 @@
/* eslint-disable typescript/interface-name-prefix */
/* eslint-disable @typescript-eslint/interface-name-prefix */
/** Is the app running in dev mode? */
declare const __DEV__: boolean

View file

@ -41,7 +41,7 @@ export type URLActionType =
| IOpenRepositoryFromPathAction
| IUnknownAction
// eslint-disable-next-line typescript/interface-name-prefix
// eslint-disable-next-line @typescript-eslint/interface-name-prefix
interface ParsedUrlQueryWithUndefined {
// `undefined` is added here to ensure we handle the missing querystring key
// See https://github.com/Microsoft/TypeScript/issues/13778 for discussion about

View file

@ -1,7 +1,7 @@
const queue: (config: QueueConfig) => Queue = require('queue')
import { revSymmetricDifference } from '../../../lib/git'
// eslint-disable-next-line typescript/interface-name-prefix
// eslint-disable-next-line @typescript-eslint/interface-name-prefix
interface QueueConfig {
// Max number of jobs the queue should process concurrently, defaults to Infinity.
readonly concurrency: number
@ -10,7 +10,7 @@ interface QueueConfig {
readonly autostart: boolean
}
// eslint-disable-next-line typescript/interface-name-prefix
// eslint-disable-next-line @typescript-eslint/interface-name-prefix
interface Queue extends NodeJS.EventEmitter {
readonly length: number

View file

@ -205,7 +205,7 @@ function orderByPosition(x: ActualTextMarker, y: ActualTextMarker) {
// The types for CodeMirror.TextMarker is all wrong, this is what it
// actually looks like
// eslint-disable-next-line typescript/interface-name-prefix
// eslint-disable-next-line @typescript-eslint/interface-name-prefix
interface ActualTextMarker extends CodeMirror.TextMarkerOptions {
/** Remove the mark. */
clear(): void

2
script/globals.d.ts vendored
View file

@ -7,7 +7,7 @@ type Package = {
}
declare namespace NodeJS {
// eslint-disable-next-line typescript/interface-name-prefix
// eslint-disable-next-line @typescript-eslint/interface-name-prefix
interface Process extends EventEmitter {
on(event: 'unhandledRejection', listener: (error: Error) => void): this
}