Skip to content

Commit 283a556

Browse files
committed
fix: fixed imports
1 parent 2f4d70f commit 283a556

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/javascript.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// import eslintConfigAirbnbBase from 'eslint-config-airbnb-base'
55
// @ts-expect-error -- False positive
66
import importPlugin from 'eslint-plugin-import'
7-
import { ERROR, OFF } from './config'
7+
import { ERROR, OFF } from './config.js'
88
/**
99
* @type {Array<import('eslint').Linter.Config>}
1010
*/

src/jest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// @ts-check
22

33
import jest from 'eslint-plugin-jest'
4-
import { ERROR, OFF, WARN } from './config'
4+
import { ERROR, OFF, WARN } from './config.js'
55

66
/**
77
* @type {Array<import('eslint').Linter.Config>}

src/react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import jsxA11y from 'eslint-plugin-jsx-a11y'
66
import reactPlugin from 'eslint-plugin-react'
77
// rules for https://www.npmjs.com/package/eslint-plugin-react-hooks
88
import reactHooksPlugin from 'eslint-plugin-react-hooks'
9-
import { ERROR, OFF } from './config'
9+
import { ERROR, OFF } from './config.js'
1010

1111
/**
1212
* @type {Array<import('eslint').Linter.Config>}

0 commit comments

Comments
 (0)