Elizabeth Craig

Results 37 issues of Elizabeth Craig

When I add a new `/// ` in a file, I get an error marker, and the error is `File '/path/to/whatever.d.ts' not found.` The error goes away when I reload...

The plugin freezes ST3 when I type something that triggers auto-complete (for example, `foo.`). The problem seems to start in the `Tss.update` function in Typescript.py when it calls into tss,...

It would be nice to have a rule (with fixer) enforcing that APIs such as `expect`, `describe`, `it`, `jest`, etc should be imported from `@jest/globals`. If there's interest in this...

enhancement
new rule

Suppose I want to mostly use the `webapp` preset as-is, but I want to modify the `'build'` task (maybe to build scss or codepen examples before ts). How should I...

Package: just-scripts
Area: Documentation
Needs: Design :thought_balloon:

Suppose I want to use the `webapp` preset and add something before (or after) the `ts` task: ``` const { taskPresets, chain } = require('just-scripts'); taskPresets.webapp(); chain('some-task').before('ts'); ``` If I...

Currently includes #753 Unify the singe-repo, monorepo, and multi-monorepo factories into one repository factory. Add the ability to pass in a custom fixture, to simplify setup and massively reduce boilerplate...

Instead of calling `git()` directly in tests, add helper methods on `Repository` to run the various operations and process the output. Centralizing git operations like this reduces boilerplate and makes...

Build on Ubuntu and Windows in PRs to reduce the chance of breaking something.

While working on another change, I noticed that the behavior of the `VersionGroupOptions.exclude` option was basically acting like a second `include` option: the passed patterns would have to be negated...

Noticed when reviewing #618 that `getDefaultOptions` returned a default of `origin/master` which actually is not used at all (it's overridden by a default or the CLI option in `getRepoOptions`). Remove...