Skip to content

Commit

Permalink
Merge all the extension repos into one
Browse files Browse the repository at this point in the history
  • Loading branch information
a-bentofreire committed Sep 7, 2024
1 parent b54ba2e commit 14be6ec
Show file tree
Hide file tree
Showing 190 changed files with 11,308 additions and 885 deletions.
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
root = true

[*, *.py]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 2

[*.md]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = false
indent_style = space
indent_size = 2
26 changes: 19 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
dist/
**.js.map
.sass-cache/*
nls/*-dev1.tsv
tests/
private/
node_modules/
.private/
*/node_modules/
**/__pycache__
*~
*.mo
*.log
phoenix/dist/
phoenix/**.js.map
phoenix/.sass-cache/*
phoenix/nls/*-dev1.tsv
phoenix/tests/
vsx/out
.vscode-test/
.vsix
xed/debian/editortoix/*
xed/debian/editortoix.*
xed/debian/.debhelper
xed/debian/files
xed/debian/debhelper-build-stamp
28 changes: 28 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// A launch configuration that compiles the extension and then opens it inside a new window
{
"version": "0.1.0",
"configurations": [
{
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/vsx/out/**/*.js" ],
"preLaunchTask": "npm: watch"
},
{
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test" ],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/vsx/out/test/**/*.js" ],
"preLaunchTask": "npm: watch"
}
]
}
8 changes: 4 additions & 4 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
Expand All @@ -18,12 +18,12 @@
},
{
"type": "npm",
"script": "build-dist",
"script": "compile",
"problemMatcher": []
},
{
"type": "npm",
"script": "build-nls",
"script": "gen-utilities-data",
"problemMatcher": []
}
]
Expand Down
255 changes: 0 additions & 255 deletions README-dev.md

This file was deleted.

Loading

0 comments on commit 14be6ec

Please sign in to comment.