Design Meeting 2021-08-26 #11855
Replies: 3 comments 2 replies
-
if we can give an opinion
please do it. would be happy to contribute on it. by the same way.
is this a particular Rust module pattern issue ?
I think the actual architecture (multi-crate repos) is better for new contributors and maintainability, having tons of files is pretty impressive and counter intuitive. |
Beta Was this translation helpful? Give feedback.
-
Agreed. I especially want to note that NOT having an implied |
Beta Was this translation helpful? Give feedback.
-
Might be an unpopular opinion, but I do like the "no config" approach that Deno takes with tooling. I had held strong opinions about styling earlier in the career, but grew to appreciate standardization and uniformity over personal preferences. I'm skeptical about seasoned developers making styling an issue. Especially in JS world where we went from var to let/const, from callbacks to promises to async/await, from "bring your own classes" to class, from IIFE to AMD/CJS to ESM--these things changed our code and habits far more than any formatting option can, yet we adapted. |
Beta Was this translation helpful? Give feedback.
-
deno_lint
using the language server (Consider using the language server type information for rules deno_lint#805)never
is called)deno_lint
is fast and spinning up of the tsc isolate is slow. Having really fast rules and then every once in a while hitting a 1s delay when linting might be jarring from a UX perspective.deno_graph
,deno_lint
,deno_doc
, etc.deno_lint
might need to be shared withdeno_doc
deno_ast
crate?deno fmt
(deno fmt accessibility #3695 [Suggestion] Allow configuring spaces indeno fmt
#11553)deno fmt
)--location
andwindow.location
.localStorage
without a--location
flag, making it difficult to persist data, and with the desire to haveCacheStorage
andIndexedDB
in the future, not having a solution means even more of a challenge.window.location
as the base.--location
.window.location
and an implied origin for persistence are 3 seperate topics.Beta Was this translation helpful? Give feedback.
All reactions