Skip to content

Commit

Permalink
[eslint] fix import ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Jul 29, 2023
1 parent 3c11201 commit 1629d44
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/util/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
'use strict';

const fs = require('fs');
const resolve = require('resolve');
const path = require('path');

const resolve = require('resolve');
const semver = require('semver');
const error = require('./error');

Expand Down
3 changes: 2 additions & 1 deletion tests/lib/rules/no-unescaped-entities.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@
// Requirements
// ------------------------------------------------------------------------------

const semver = require('semver');
const path = require('path');

const semver = require('semver');
const resolve = require('resolve');

let allowsInvalidJSX = false;
Expand Down

0 comments on commit 1629d44

Please sign in to comment.