Skip to content

Commit

Permalink
chore: fix linting (#1305)
Browse files Browse the repository at this point in the history
[This commit](standard/eslint-config-standard@9673e0b)
to eslint-config-standard altered the `no-multiple-empty-lines`
rule so update to the new linting rules.
  • Loading branch information
achingbrain committed Jun 10, 2023
1 parent c8ad457 commit 17c0331
Show file tree
Hide file tree
Showing 9 changed files with 0 additions and 9 deletions.
1 change: 0 additions & 1 deletion src/check-project/check-licence-files.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

/* eslint-disable no-console */

import path from 'path'
Expand Down
1 change: 0 additions & 1 deletion src/check-project/check-monorepo-readme.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

/* eslint-disable no-console */

import path from 'path'
Expand Down
1 change: 0 additions & 1 deletion src/check-project/check-readme.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

/* eslint-disable no-console,complexity */

import path from 'path'
Expand Down
1 change: 0 additions & 1 deletion src/cmds/lint-package-json.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

import path from 'path'
import { fileURLToPath } from 'url'
import { execa } from 'execa'
Expand Down
1 change: 0 additions & 1 deletion src/cmds/lint.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

import { loadUserConfig } from '../config/user.js'
import lintCmd from '../lint.js'

Expand Down
1 change: 0 additions & 1 deletion test/fixtures/dependency-check/pass/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

/* eslint-disable no-unused-vars */

// @ts-ignore
Expand Down
1 change: 0 additions & 1 deletion test/fixtures/js+ts/src/some.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

export const main = () => {

}
1 change: 0 additions & 1 deletion test/fixtures/tests/context-access.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@

// export something from the global scope
export default Uint8Array
1 change: 0 additions & 1 deletion test/utils/get-port.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

/* eslint-env mocha */

import { expect } from '../../utils/chai.js'
Expand Down

0 comments on commit 17c0331

Please sign in to comment.