Skip to content

Commit 12ab70d

Browse files
committed
fix line endings
1 parent 2cfaec6 commit 12ab70d

File tree

93 files changed

+17948
-17948
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+17948
-17948
lines changed

.gitignore

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
.DS_Store
2-
npm-debug.log
3-
Thumbs.db
4-
node_modules/
5-
.build/
6-
out/
7-
out-build/
8-
out-editor/
9-
out-editor-min/
10-
out-monaco-editor-core/
11-
out-vscode/
12-
out-vscode-min/
13-
build/node_modules
14-
coverage/
15-
test_data/
1+
.DS_Store
2+
npm-debug.log
3+
Thumbs.db
4+
node_modules/
5+
.build/
6+
out/
7+
out-build/
8+
out-editor/
9+
out-editor-min/
10+
out-monaco-editor-core/
11+
out-vscode/
12+
out-vscode-min/
13+
build/node_modules
14+
coverage/
15+
test_data/
1616
yarn-error.log

.vscode/settings.json

+42-42
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,42 @@
1-
{
2-
"editor.insertSpaces": false,
3-
"files.eol": "\n",
4-
"files.trimTrailingWhitespace": true,
5-
"files.exclude": {
6-
".git": true,
7-
".build": true,
8-
"**/.DS_Store": true,
9-
"build/**/*.js": {
10-
"when": "$(basename).ts"
11-
}
12-
},
13-
"files.associations": {
14-
"OSSREADME.json": "jsonc"
15-
},
16-
"search.exclude": {
17-
"**/node_modules": true,
18-
"**/bower_components": true,
19-
".build/**": true,
20-
"out/**": true,
21-
"out-build/**": true,
22-
"out-vscode/**": true,
23-
"i18n/**": true,
24-
"extensions/**/out/**": true,
25-
"test/smoke/out/**": true
26-
},
27-
"tslint.enable": true,
28-
"lcov.path": [
29-
"./.build/coverage/lcov.info",
30-
"./.build/coverage-single/lcov.info"
31-
],
32-
"lcov.watch": [
33-
{
34-
"pattern": "**/*.test.js",
35-
"command": "${workspaceFolder}/scripts/test.sh --coverage --run ${file}",
36-
"windows": {
37-
"command": "${workspaceFolder}\\scripts\\test.bat --coverage --run ${file}"
38-
}
39-
}
40-
],
41-
"typescript.tsdk": "node_modules/typescript/lib"
42-
}
1+
{
2+
"editor.insertSpaces": false,
3+
"files.eol": "\n",
4+
"files.trimTrailingWhitespace": true,
5+
"files.exclude": {
6+
".git": true,
7+
".build": true,
8+
"**/.DS_Store": true,
9+
"build/**/*.js": {
10+
"when": "$(basename).ts"
11+
}
12+
},
13+
"files.associations": {
14+
"OSSREADME.json": "jsonc"
15+
},
16+
"search.exclude": {
17+
"**/node_modules": true,
18+
"**/bower_components": true,
19+
".build/**": true,
20+
"out/**": true,
21+
"out-build/**": true,
22+
"out-vscode/**": true,
23+
"i18n/**": true,
24+
"extensions/**/out/**": true,
25+
"test/smoke/out/**": true
26+
},
27+
"tslint.enable": true,
28+
"lcov.path": [
29+
"./.build/coverage/lcov.info",
30+
"./.build/coverage-single/lcov.info"
31+
],
32+
"lcov.watch": [
33+
{
34+
"pattern": "**/*.test.js",
35+
"command": "${workspaceFolder}/scripts/test.sh --coverage --run ${file}",
36+
"windows": {
37+
"command": "${workspaceFolder}\\scripts\\test.bat --coverage --run ${file}"
38+
}
39+
}
40+
],
41+
"typescript.tsdk": "node_modules/typescript/lib"
42+
}

LICENSE.txt

+23-23
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
MIT License
2-
3-
Copyright (c) 2015 - present Microsoft Corporation
4-
5-
All rights reserved.
6-
7-
Permission is hereby granted, free of charge, to any person obtaining a copy
8-
of this software and associated documentation files (the "Software"), to deal
9-
in the Software without restriction, including without limitation the rights
10-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11-
copies of the Software, and to permit persons to whom the Software is
12-
furnished to do so, subject to the following conditions:
13-
14-
The above copyright notice and this permission notice shall be included in all
15-
copies or substantial portions of the Software.
16-
17-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23-
SOFTWARE.
1+
MIT License
2+
3+
Copyright (c) 2015 - present Microsoft Corporation
4+
5+
All rights reserved.
6+
7+
Permission is hereby granted, free of charge, to any person obtaining a copy
8+
of this software and associated documentation files (the "Software"), to deal
9+
in the Software without restriction, including without limitation the rights
10+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11+
copies of the Software, and to permit persons to whom the Software is
12+
furnished to do so, subject to the following conditions:
13+
14+
The above copyright notice and this permission notice shall be included in all
15+
copies or substantial portions of the Software.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23+
SOFTWARE.

0 commit comments

Comments
 (0)