Skip to content

Commit

Permalink
Abstraction added
Browse files Browse the repository at this point in the history
  • Loading branch information
yousefvand committed May 21, 2020
1 parent 455bba5 commit b98364d
Show file tree
Hide file tree
Showing 224 changed files with 4,627 additions and 2,911 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
node_modules
node_modules/
# .vscode/
*.vsix
11 changes: 10 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,17 @@
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
{
"version": "0.2.0",
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Build",
"program": "${workspaceFolder}/build.js",
"skipFiles": [
"<node_internals>/**"
]
},
{
"name": "Extension",
"type": "extensionHost",
Expand Down
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
"mobi",
"multiline",
"mylib",
"nsroot",
"pgrep",
"proto",
"quickstart",
Expand Down
12 changes: 12 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "spellcheck",
"problemMatcher": [],
"label": "npm: spellcheck",
"detail": "./node_modules/.bin/cspell ./**/*"
}
]
}
9 changes: 5 additions & 4 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
.vscode/**
.vscode-test/**
.gitignore
node_modules/**
nsroot/**
_config.yml
.gitattributes
docgen.js
.gitignore
build.js
publish.sh
_config.yml
test.sh
Loading

0 comments on commit b98364d

Please sign in to comment.