Trevor Miller

Results 54 comments of Trevor Miller

I would suggest having the linting setup include only common problems only; perhaps extending `eslint:recommended` (which is [common problems only](https://eslint.org/docs/rules/)), something like: ```json { "parserOptions": { "ecmaVersion": X }, "extends":...

Would love to see Bitbucket support. We are currently manually creating changelogs.

Our organization is also running into this on multiple slide decks since upgrading to v3.

Would be great to have some documentation on how to split up large presentations in v3+. In v1, we could do something like: ```mdx import Break from "./slides/break.mdx"; import ESModules...

> "It does, however, support a multi-deck mode which lets you start a server for multiple deck files in a single directory at once. Each deck will have its own...

@jxnblk Curious if you have any thoughts on this? I'd be happy to submit a pull request if you could point me in the right direction. Thank you for all...

I would love to see this as well; the new HTML injections that BrowserSync almost has ready are going to be awesome :)

Would explaining how to use GitHub Actions / Packages to distribute executables be a good fit?

I'd be willing to submit a pull request for this, but as a new Rust developer, I've been trying to find this information myself and am not sure how to...

It seems to me that CI could do something like: ```sh cargo check cargo test cargo clippy cargo fmt cargo audit ``` And CD something like: ```sh cargo doc cargo...