Brad Zacher

Results 119 issues of Brad Zacher

**Describe the bug** When selecting the `ESLint v4` transformer, it automatically switches to the babel-eslint parser. If you switch the parser to `@typescript-eslint/parser` after this, it doesn't change the parser...

When you specify plugins in package.json, ignores them completely due to this line https://github.com/2fd/graphdoc/blob/master/lib/command.ts#L197 For example. If I run `yarn graphdoc -c file.json`, where `file.json` is ``` { "graphdoc": {...

## Input: ```ts declare abstract class DefinitionBase {} ``` ## Expected: ```ts declare abstract class DefinitionBase {} ``` ## Actual: ```ts declare abstract class DefinitionBase< extends string> {} ```

## What's Happened? (the TL;DR) This repository is has been archived, and the package `eslint-plugin-typescript` has been deprecated. We've moved the issues, code, and commit history to [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint), and renamed...

discussion

I've kept this project alive for some time after I took ownership and rewrote it. But it hasn't had any use to me for over 2 years now due to...

**Prettier 2.0.5** [Playground link](https://prettier.io/playground/#N4Igxg9gdgLgprEAuEATOYA2BDATnAAkigGcYCAzCCJA7KATwG4AdKN4sggIzwEYCAXgIB6AFRiCAARgMADoWBlcASygBzAL4ExIgBRUIASiYgANCAhyYK6CWSg8uCAHcACngT2U2TC+wM9hbcuNhgANZwMADKcmFq6sgwuACucBYAFjAAtpgA6hkq8CRxYHDRXkUqAG5FDMjgJEEgaiRwuDBuoerZ2MgUvm0WAFYkAB4AQqERUdHY2XAAMmpw-YPpIKNj0QmYcACKKRDwa5hDIHG4bbgNsgokYKrW5heqsHkqqDAZyAAcAAwWOTONp5UJyBrAuDXaqrCwARyO8C6Vm8IGwJAAtFA4HB0KgXvhESp8F1sD0+kgBmcNm1siokqlabsDkjVlT1hYYNhuB8vj8kAAmLmhFSYBIAYQg2V6DWhAFYXik2gAVHneannappACSUHQsGijxU1gAgvrorI9qc2ppNEA) ```sh # Options (if any): --parser typescript ``` **Input:** ```tsx declare const foo: any; const bar1 = /** @type {string} */(foo); ``` **Output:** ```tsx declare const...

type:enhancement
area:comments
lang:typescript
lang:javascript

Currently if you pass `overrides` directly to `prettier.format`, it will get ignored. For example the below code sample will use the `babel` parser, even though it *should* match the given...

type:enhancement
status:needs discussion
area:api

**Prettier 2.7.1** [Playground link](https://prettier.io/playground/#N4Igxg9gdgLgprEAuEMCeAHOACAYhCbAXm2AB0ptsBDAJwHMkKqyYB6N7SAW24RmZVsAH2wBnGLQCWUeoKodsEGAAs4teSOxQArtwBG6igF8QAGhAQMMKdDHJQdWhADuABToJ7KagBsX1Gj2Fvq01GAA1nAwAMrUfAAyMnDIAGZ+YnAhYZHRMRjhMvTIkjpZIHAGcAAm1TUJ1LI61PRw+LTc1DA2ssgg1DowEOYgKjDcvgDqKlLwYgVgcDFes1IAbrNofWBiwSAymbQwbmH0nWkZ5QBWYgAeMUW+cACKOsopSOm+mRYFtId9VK+VwjDDSWCTKTVVTIAAcAAZfs5MpMwhg+mC4Ic1ikLABHN7wE5Wbz9MQAWigcBqNRGtDgBKk9JOLXOn0uFky3CkJVoZU5jxehI+Xx+qGo+kh0JUyAATBZJNQpL4igBhCC8ah9LEAVhGOkyABUJd5ReU1mUAJJQOqwGJgaTWACCNpi6CeF2+cGMxiAA) ```sh --parser flow | typescript | babel-ts | babel-flow | babel ``` **Input:** ```jsx type Foo = { arg: // comment | string // other |...

type:bug
area:comments
lang:typescript
area:union types

One of the more difficult pieces of the AST to work with is properties. Why? Because computed-name properties and statically-named properties are a single AST node. This is a huge...

I'd love to be able to hide individual schemas (plus their connections) from the view. The biggest use case is hiding the root query from the view. Right now we...

feature