Skip to content

Commit

Permalink
Fix lint-disabling comments
Browse files Browse the repository at this point in the history
  • Loading branch information
j-f1 committed Oct 19, 2017
1 parent 254c566 commit d8ceeff
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion app/test/unit/git/reset-test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* tslint:disable:no-sync-functions */
/* eslint-disable no-sync */

import * as path from 'path'
import { expect } from 'chai'
Expand Down
2 changes: 1 addition & 1 deletion script/build.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* tslint:disable:no-sync-functions */
/* eslint-disable no-sync */

import * as path from 'path'
import * as cp from 'child_process'
Expand Down
3 changes: 1 addition & 2 deletions script/generate-octicons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ const filePath = path.resolve(
'sprite.octicons.svg'
)

/* tslint:disable:no-sync-functions */
const file = fs.readFileSync(filePath, 'utf-8')
const file = fs.readFileSync(filePath, 'utf-8') // eslint-disable-line no-sync

interface IXML2JSResult {
svg: { symbol: ReadonlyArray<IXML2JSNode> }
Expand Down
2 changes: 1 addition & 1 deletion script/package.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* tslint:disable:no-sync-functions */
/* eslint-disable no-sync */

import * as fs from 'fs-extra'
import * as cp from 'child_process'
Expand Down
2 changes: 1 addition & 1 deletion script/review-logs.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* tslint:disable:no-sync-functions */
/* eslint-disable no-sync */

import * as fs from 'fs'
import * as path from 'path'
Expand Down
2 changes: 1 addition & 1 deletion script/test-review.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* tslint:disable:no-sync-functions */
/* eslint-disable no-sync */

import * as fs from 'fs'
import { getLogFiles } from './review-logs'
Expand Down
2 changes: 1 addition & 1 deletion script/test-setup.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* tslint:disable:no-sync-functions */
/* eslint-disable no-sync */

import * as fs from 'fs'
import * as cp from 'child_process'
Expand Down

0 comments on commit d8ceeff

Please sign in to comment.