Skip to content

Commit 9ec52c0

Browse files
authored
Enforce CRLF in TS/JS files (#55403)
1 parent 3b49ce9 commit 9ec52c0

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed

.dprint.jsonc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"newLineKind": "auto",
55
"useTabs": false,
66
"typescript": {
7+
"newLineKind": "crlf",
78
"semiColons": "always",
89
"quoteStyle": "preferDouble",
910
"quoteProps": "consistent",

src/lib/es2023.collection.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
interface WeakKeyTypes {
2-
symbol: symbol;
3-
}
1+
interface WeakKeyTypes {
2+
symbol: symbol;
3+
}

src/lib/esnext.decorators.d.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
/// <reference lib="es2015.symbol" />
2-
/// <reference lib="decorators" />
3-
4-
interface SymbolConstructor {
5-
readonly metadata: unique symbol;
6-
}
7-
8-
interface Function {
9-
[Symbol.metadata]: DecoratorMetadata | null;
10-
}
1+
/// <reference lib="es2015.symbol" />
2+
/// <reference lib="decorators" />
3+
4+
interface SymbolConstructor {
5+
readonly metadata: unique symbol;
6+
}
7+
8+
interface Function {
9+
[Symbol.metadata]: DecoratorMetadata | null;
10+
}

0 commit comments

Comments
 (0)