quick-lint / quick-lint-js

quick-lint-js finds bugs in JavaScript programs
https://quick-lint-js.com
GNU General Public License v3.0
1.52k stars 192 forks source link

8$: allow '!' after field name with keyword #1144

Open strager opened 8 months ago

strager commented 8 months ago

Example of valid TypeScript code which quick-lint-js rejects:

class C {
  public!: boolean;
}