summaryrefslogtreecommitdiff
path: root/tests/specs/lint/sloppy_imports_dts/lint.out
blob: d891676ac019bb0ddf8519f7acef9b58b5bfcaee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
error[no-sloppy-imports]: Sloppy imports are not allowed.
 --> [WILDLINE]main.ts:1:20
  | 
1 | import * as a from "./a.js";
  |                    ^^^^^^^^

  docs: https://docs.deno.com/runtime/manual/tools/unstable_flags/#--unstable-sloppy-imports


error[no-sloppy-imports]: Sloppy imports are not allowed.
 --> [WILDLINE]main.ts:2:20
  | 
2 | import * as b from "./b.js";
  |                    ^^^^^^^^

  docs: https://docs.deno.com/runtime/manual/tools/unstable_flags/#--unstable-sloppy-imports


error[no-sloppy-imports]: Sloppy imports are not allowed.
 --> [WILDLINE]main.ts:3:20
  | 
3 | import * as c from "./c.mjs";
  |                    ^^^^^^^^^

  docs: https://docs.deno.com/runtime/manual/tools/unstable_flags/#--unstable-sloppy-imports


error[no-sloppy-imports]: Sloppy imports are not allowed.
 --> [WILDLINE]main.ts:4:20
  | 
4 | import * as d from "./d.mjs";
  |                    ^^^^^^^^^

  docs: https://docs.deno.com/runtime/manual/tools/unstable_flags/#--unstable-sloppy-imports


error[no-sloppy-imports]: Sloppy imports are not allowed.
  --> [WILDLINE]main.ts:11:21
   | 
11 | import * as a2 from "./a";
   |                     ^^^^^

  docs: https://docs.deno.com/runtime/manual/tools/unstable_flags/#--unstable-sloppy-imports


error[no-sloppy-imports]: Sloppy imports are not allowed.
  --> [WILDLINE]main.ts:12:21
   | 
12 | import * as b2 from "./b";
   |                     ^^^^^

  docs: https://docs.deno.com/runtime/manual/tools/unstable_flags/#--unstable-sloppy-imports


error[no-sloppy-imports]: Sloppy imports are not allowed.
  --> [WILDLINE]main.ts:13:21
   | 
13 | import * as c2 from "./c";
   |                     ^^^^^

  docs: https://docs.deno.com/runtime/manual/tools/unstable_flags/#--unstable-sloppy-imports


error[no-sloppy-imports]: Sloppy imports are not allowed.
  --> [WILDLINE]main.ts:14:21
   | 
14 | import * as d2 from "./d";
   |                     ^^^^^

  docs: https://docs.deno.com/runtime/manual/tools/unstable_flags/#--unstable-sloppy-imports


error[no-sloppy-imports]: Sloppy imports are not allowed.
  --> [WILDLINE]main.ts:21:24
   | 
21 | import * as dirTs from "./dir_ts";
   |                        ^^^^^^^^^^

  docs: https://docs.deno.com/runtime/manual/tools/unstable_flags/#--unstable-sloppy-imports


error[no-sloppy-imports]: Sloppy imports are not allowed.
  --> [WILDLINE]main.ts:22:24
   | 
22 | import * as dirJs from "./dir_js";
   |                        ^^^^^^^^^^

  docs: https://docs.deno.com/runtime/manual/tools/unstable_flags/#--unstable-sloppy-imports


error[no-sloppy-imports]: Sloppy imports are not allowed.
  --> [WILDLINE]main.ts:23:25
   | 
23 | import * as dirMts from "./dir_mts";
   |                         ^^^^^^^^^^^

  docs: https://docs.deno.com/runtime/manual/tools/unstable_flags/#--unstable-sloppy-imports


error[no-sloppy-imports]: Sloppy imports are not allowed.
  --> [WILDLINE]main.ts:24:25
   | 
24 | import * as dirMjs from "./dir_mjs";
   |                         ^^^^^^^^^^^

  docs: https://docs.deno.com/runtime/manual/tools/unstable_flags/#--unstable-sloppy-imports


Found 12 problems (12 fixable via --fix)
Checked 17 files