Andrey
Andrey
I couldn't start your server in the `JS DOM` environment because I get the error: `ReferenceError: setImmediate is not defined`. Is there a way to run a server in a...
https://github.com/swc-project/swc/issues/246 The format is compatible with Espree? Can I use it as custom eslint parser?
### **`dprint 0.41.0`** `dprint.json`: ```json { "typescript": { "quoteStyle": "preferSingle", "semiColons": "asi" }, "prettier": { "printWidth": 100, "semi": false, "singleQuote": true, "trailingComma": "all", "vueIndentScriptAndStyle": true }, "excludes": [ "**/node_modules", "**/*-lock.json",...
**OS** Windows 11 Pro. WSL 2. 11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz 2.80 GHz RAM 16gb **Dprint version** `0.41.0` **JSON plugin** https://plugins.dprint.dev/json-0.17.4.wasm **dprint.json** ```json { "plugins": [ "https://plugins.dprint.dev/json-0.17.4.wasm" ]...
```js export function getTextModel(font, caption, font_size) { const model = new makerjs.models.Text(font, caption, font_size); model.layer = DrawLayerNames.Caption; const model_extents = makerjs.measure.modelExtents(model); return [model, model_extents]; } const [caption, caption_extents] = getTextModel(font,...