Enforce CRLF in TS/JS files (#55403)

This commit is contained in:
Jake Bailey
2023-08-16 15:27:36 -07:00
committed by GitHub
parent 3b49ce99e2
commit 9ec52c0518
3 changed files with 14 additions and 13 deletions

View File

@@ -4,6 +4,7 @@
"newLineKind": "auto",
"useTabs": false,
"typescript": {
"newLineKind": "crlf",
"semiColons": "always",
"quoteStyle": "preferDouble",
"quoteProps": "consistent",

View File

@@ -1,3 +1,3 @@
interface WeakKeyTypes {
symbol: symbol;
}
interface WeakKeyTypes {
symbol: symbol;
}

View File

@@ -1,10 +1,10 @@
/// <reference lib="es2015.symbol" />
/// <reference lib="decorators" />
interface SymbolConstructor {
readonly metadata: unique symbol;
}
interface Function {
[Symbol.metadata]: DecoratorMetadata | null;
}
/// <reference lib="es2015.symbol" />
/// <reference lib="decorators" />
interface SymbolConstructor {
readonly metadata: unique symbol;
}
interface Function {
[Symbol.metadata]: DecoratorMetadata | null;
}