Skip to content

Commit 5ca0fa3

Browse files
committed
Upgrade dependencies
1 parent c9fa8b1 commit 5ca0fa3

File tree

71 files changed

+88
-88
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+88
-88
lines changed

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838
"ci-info": "^2.0.0",
3939
"clean-regexp": "^1.0.0",
4040
"eslint-ast-utils": "^1.1.0",
41-
"eslint-template-visitor": "^2.2.1",
41+
"eslint-template-visitor": "^2.2.2",
4242
"eslint-utils": "^2.1.0",
43-
"import-modules": "^2.0.0",
43+
"import-modules": "^2.1.0",
4444
"lodash": "^4.17.20",
4545
"pluralize": "^8.0.0",
4646
"read-pkg-up": "^7.0.1",
@@ -53,15 +53,15 @@
5353
"@ava/babel": "^1.0.1",
5454
"@babel/code-frame": "7.12.11",
5555
"@lubien/fixture-beta-package": "^1.0.0-beta.1",
56-
"@typescript-eslint/parser": "^4.10.0",
57-
"ava": "^3.14.0",
56+
"@typescript-eslint/parser": "^4.12.0",
57+
"ava": "^3.15.0",
5858
"babel-eslint": "^10.1.0",
5959
"chalk": "^4.1.0",
6060
"enquirer": "2.3.6",
6161
"eslint": "^7.15.0",
6262
"eslint-ava-rule-tester": "^4.0.0",
6363
"eslint-plugin-eslint-plugin": "^2.3.0",
64-
"eslint-remote-tester": "^0.3.5",
64+
"eslint-remote-tester": "^0.4.0",
6565
"execa": "^5.0.0",
6666
"listr": "^0.14.3",
6767
"mem": "8.0.0",
@@ -70,10 +70,10 @@
7070
"pify": "^5.0.0",
7171
"typescript": "^4.1.3",
7272
"vue-eslint-parser": "^7.3.0",
73-
"xo": "^0.36.1"
73+
"xo": "^0.37.1"
7474
},
7575
"peerDependencies": {
76-
"eslint": ">=7.15.0"
76+
"eslint": ">=7.17.0"
7777
},
7878
"ava": {
7979
"babel": true,

test/better-regex.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {test} from './utils/test';
1+
import {test} from './utils/test.js';
22

33
const MESSAGE_ID = 'better-regex';
44

test/catch-error-name.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {outdent} from 'outdent';
2-
import {test} from './utils/test';
2+
import {test} from './utils/test.js';
33

44
const MESSAGE_ID = 'catch-error-name';
55

test/consistent-destructuring.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import test from 'ava';
22
import avaRuleTester from 'eslint-ava-rule-tester';
33
import {outdent} from 'outdent';
4-
import rule from '../rules/consistent-destructuring';
4+
import rule from '../rules/consistent-destructuring.js';
55

66
const ruleTester = avaRuleTester(test, {
77
parserOptions: {

test/consistent-function-scoping.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {outdent} from 'outdent';
2-
import {test} from './utils/test';
2+
import {test} from './utils/test.js';
33

44
const MESSAGE_ID = 'consistent-function-scoping';
55

test/custom-error-definition.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import test from 'ava';
22
import avaRuleTester from 'eslint-ava-rule-tester';
33
import {outdent} from 'outdent';
4-
import {test as runTest, rule} from './utils/test';
4+
import {test as runTest, rule} from './utils/test.js';
55

66
const ruleTester = avaRuleTester(test, {
77
env: {

test/empty-brace-spaces.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {outdent} from 'outdent';
22
import {flatten} from 'lodash';
3-
import {test} from './utils/test';
3+
import {test} from './utils/test.js';
44

55
const SPACES_PLACEHOLDER = '/* */';
66
const cases = [

test/error-message.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {outdent} from 'outdent';
2-
import {test} from './utils/test';
2+
import {test} from './utils/test.js';
33

44
test({
55
valid: [

test/escape-case.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint-disable no-template-curly-in-string, unicorn/escape-case */
2-
import {test} from './utils/test';
2+
import {test} from './utils/test.js';
33

44
const errors = [
55
{

test/expiring-todo-comments.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {test} from './utils/test';
1+
import {test} from './utils/test.js';
22

33
const expiredTodoError = (expirationDate, message) => ({
44
message: `There is a TODO that is past due date: ${expirationDate}. ${message}`

0 commit comments

Comments
 (0)