sakawi
sakawi
I've been working on my own language that inherits many features from CoffeeScript and additionally supports a large portion of TypeScript syntax. In my language, something like `x: number =...
Sorry @edemaine, I haven't updated the docs yet. I removed the `fn` syntax and changed to CS's arrows and bound arrow syntax as I think it looks cleaner. In my...
We could also have a keyword such as `rescope` or `scope` available for use in `for` loops. E.g. ```coffeescript for scope x in list queueMicrotask -> console.log x ``` would...
What about brackets or curly braces? Currently, this is invalid code (I hope) ```coffeescript results = {a * a for a from [1..3]} ``` but this looks better and isn't...
Here is the order I use for Vue: ```json [ "^#", "^:?is$", "^v-for$", "^v-(if|else-if|else)$", "^v-show$", "^v-cloak$", "^v-pre$", "^v-once$", "^:?id$", "^:?ref$", "^:?key$", "^v-model$", "^v-model:", "^:?class$", "^:(?!data-)", "$DEFAULT", "^:?data-", "^@", "^v-html$", "^v-text$",...
I use this module often and I think that it would be useful for TypeScript developers to have type declarations. I also have a [PR](https://github.com/mde/true/pull/30) in `mde/true` to add type...
@joshnuss TypeScript knows that `Writable` is a type, but other bundlers (such as Svelte, Babel, or esbuild) only know what might be a type. Usually, these tools can strip out...
I use this module often and I think that it would be useful for TypeScript developers to have type declarations. I also have a [PR](https://github.com/mde/false/pull/9) in `mde/false` to add type...
@willster277 I know this isn't a solution to the Prettier problem, but you can use `@type` tags on each parameter like so: ```javascript ((/** @type {number} */ a, /** @type...