File tree 6 files changed +16
-3
lines changed
6 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 22
22
"8080" : { "label" : " Example" }
23
23
},
24
24
"postCreateCommand" : " npm install" ,
25
- "remoteUser" : " node"
25
+ "remoteUser" : " node" ,
26
+ "customizations" : {
27
+ "vscode" : {
28
+ "settings" : {
29
+ "typescript.preferences.importModuleSpecifier" : " non-relative"
30
+ }
31
+ }
32
+ }
26
33
}
Original file line number Diff line number Diff line change 34
34
]
35
35
}
36
36
],
37
- "simple-import-sort/exports" : " error"
37
+ "simple-import-sort/exports" : " error" ,
38
+ "import/no-relative-parent-imports" : " error"
38
39
},
39
40
"overrides" : [
40
41
{
Original file line number Diff line number Diff line change @@ -236,7 +236,7 @@ Temporary Items
236
236
237
237
# VisualStudioCode
238
238
.vscode /*
239
- # !.vscode/settings.json
239
+ ! .vscode /settings.json
240
240
# !.vscode/tasks.json
241
241
# !.vscode/launch.json
242
242
# !.vscode/extensions.json
Original file line number Diff line number Diff line change
1
+ // eslint-disable-next-line import/no-relative-parent-imports
1
2
import '../src/index.scss'
2
3
3
4
import { SeamProvider } from '@seamapi/react'
Original file line number Diff line number Diff line change
1
+ {
2
+ "typescript.preferences.importModuleSpecifier" : " non-relative"
3
+ }
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import { createFake } from '@seamapi/fake-seam-connect'
5
5
import axios from 'axios'
6
6
import getRawBody from 'raw-body'
7
7
8
+ // eslint-disable-next-line import/no-relative-parent-imports
8
9
import { seedFake } from '../.storybook/seed-fake.js'
9
10
10
11
// Taken from seam-connect
You can’t perform that action at this time.
0 commit comments