microsoft/TypeAgent

Public

mirrored fromhttps://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
78c691a1dc6954d7bec8ba6b3df51daf1480fffe

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

ts/.editorconfig

28lines · modecode

1root = true
2
3[*]
4indent_style = space
5end_of_line = lf
6
7# Typescript files
8[*.{cts,mts,ts,tsx}]
9insert_final_newline = true
10trim_trailing_whitespace = true
11tab_width = 4
12indent_size = 4
13file_header_template = // Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.
14
15# Javascript files
16[*.{cjs,mjs,js,jsx}]
17insert_final_newline = true
18trim_trailing_whitespace = true
19tab_width = 4
20indent_size = 4
21file_header_template = // Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.
22
23# JSON config files
24[*.json]
25tab_width = 2
26indent_size = 2
27insert_final_newline = true
28trim_trailing_whitespace = true