You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This lint would error on all uses of the APIs that we are going to deprecate as per denoland/deno#9795. The lint only has to appear on the most obvious cases (e.g. new Deno.Buffer, but not const { Buffer } = Deno; new Buffer();).
The lint rule should be recommended.
For Deno 1.9 the lint should highlight the following APIs:
Deno.Buffer
Deno.readAll
Deno.readAllSync
Deno.writeAll
Deno.writeAllSync
Rule name is open for bikeshedding :-)
The text was updated successfully, but these errors were encountered:
This lint would error on all uses of the APIs that we are going to deprecate as per denoland/deno#9795. The lint only has to appear on the most obvious cases (e.g.
new Deno.Buffer
, but notconst { Buffer } = Deno; new Buffer();
).The lint rule should be
recommended
.For Deno 1.9 the lint should highlight the following APIs:
Deno.Buffer
Deno.readAll
Deno.readAllSync
Deno.writeAll
Deno.writeAllSync
Rule name is open for bikeshedding :-)
The text was updated successfully, but these errors were encountered: