Joe Bartlett

Results 15 comments of Joe Bartlett

@klaemo Could you describe the specific issue you're having? An issue I've run into with 0.4.0 (the latest semver tag & the version Bower uses by default) is the case...

Gotcha. Another meanwhile patch is to use a RequireJS/r.js paths config that matches lowercase-h handlebars to uppercase-H Handlebars: ``` require.config({ paths: { "handlebars": "Handlebars" } }); ``` (Could pro'ly use...

This PR resolves a high severity `npm audit` warning for consumers: [There's a high severity advisory](https://www.npmjs.com/advisories/1674) for the version of underscore used in this lib. Applications inheriting that dependency are...

`configPath` is the resolution of [`prettier.resolveConfigFile`](https://prettier.io/docs/en/api.html#prettierresolveconfigfilefilepath) given the current document path. That's `null` if no Prettier config file is found in the parent tree, [coalesced to undefined in our code](https://github.com/prettier/prettier-vscode/blob/3af5f2c432c6b1be623fb67083e6c758c0689864/src/ModuleResolver.ts#L270)....

> This pull request has been labeled as stale due to inactivity. Reply to keep this pull request open. Keep open for next major release.

@orenklein gave a good example in #2402: they're working in a monorepo with a global .editorconfig. Some of the individual packages in the monorepo augment those rules with Prettier configs,...

A suggestion for config naming: we could change the values for _requireConfig_ instead of useEditorConfig. Something like this: `"requireConfig": "strict" | "inclusive" | "none"` * `strict` = Files are formatted...