Copy this TS code:
export type IncludeReference =
| BaseReference
| SelfReference
| RelativeReference
| TopLevelReference
| TopLevelRepositoryReference;
export const enum IncludeReferenceKind {
Base,
Self,
RelativeReference,
TopLevelReference,
TopLevelRepositoryReference,
}
Create an new TS file, disable all auto formatters and paste the copied source.
Actual result:
export type IncludeReference =
| BaseReference
| SelfReference
| RelativeReference
| TopLevelReference
| TopLevelRepositoryReference;
export const enum IncludeReferenceKind {
Base,
Self,
RelativeReference,
TopLevelReference,
TopLevelRepositoryReference,
}
Expected result: Indentation should be preserved.
Maybe this was caused by a community PR that changed how enter rules are applied to pasted text.
Copy this TS code:
Create an new TS file, disable all auto formatters and paste the copied source.
Actual result:
Expected result: Indentation should be preserved.
Maybe this was caused by a community PR that changed how enter rules are applied to pasted text.