vscode/extensions/markdown-language-features/preview-src
Matt Bierner f17b33faf2
Use .?method() in more places (#152112)
Switches simple patterns like:

```ts
if (some.thing) {
    some.thing.method();
}
```

to:

```ts
some.thing?.method()
```

This is more concise and avoids having to repeat the `some.thing` part
2022-06-15 16:28:31 +00:00
..
activeLineMarker.ts Use morphdom to reduce number of full page updates to md preview 2021-11-01 15:33:00 -07:00
csp.ts Use morphdom to reduce number of full page updates to md preview 2021-11-01 15:33:00 -07:00
events.ts
index.ts Enable no-case-declarations in codebase (#139243) 2021-12-15 17:15:35 -08:00
loading.ts Use .?method() in more places (#152112) 2022-06-15 16:28:31 +00:00
messaging.ts Use morphdom to reduce number of full page updates to md preview 2021-11-01 15:33:00 -07:00
pre.ts Use morphdom to reduce number of full page updates to md preview 2021-11-01 15:33:00 -07:00
scroll-sync.ts enable @typescript-eslint/member-delimiter-style, https://github.com/microsoft/vscode/issues/140391 2022-02-02 14:35:33 +01:00
settings.ts enable @typescript-eslint/member-delimiter-style, https://github.com/microsoft/vscode/issues/140391 2022-02-02 14:35:33 +01:00
strings.ts
tsconfig.json Use morphdom to reduce number of full page updates to md preview 2021-11-01 15:33:00 -07:00