File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 102
102
}
103
103
}
104
104
],
105
- "prettier" : true ,
106
- "rules" : {
107
- "n/file-extension-in-import" : " off"
108
- }
105
+ "prettier" : true
109
106
}
110
107
}
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ test('xastscript', async function (t) {
11
11
'should expose the public api (`/jsx-runtime`)' ,
12
12
async function ( ) {
13
13
assert . deepEqual (
14
+ // eslint-disable-next-line n/file-extension-in-import -- ESLint is wrong.
14
15
Object . keys ( await import ( 'xastscript/jsx-runtime' ) ) . sort ( ) ,
15
16
[ 'Fragment' , 'jsx' , 'jsxs' ]
16
17
)
@@ -21,6 +22,7 @@ test('xastscript', async function (t) {
21
22
'should expose the public api (`/jsx-dev-runtime`)' ,
22
23
async function ( ) {
23
24
assert . deepEqual (
25
+ // eslint-disable-next-line n/file-extension-in-import -- ESLint is wrong.
24
26
Object . keys ( await import ( 'xastscript/jsx-dev-runtime' ) ) . sort ( ) ,
25
27
[ 'Fragment' , 'jsxDEV' ]
26
28
)
You can’t perform that action at this time.
0 commit comments