Skip to content

Commit 5e6097b

Browse files
committed
NFC: Convert tabs to spaces
1 parent e38e32f commit 5e6097b

File tree

6 files changed

+104
-104
lines changed

6 files changed

+104
-104
lines changed

.vscode/launch.json

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -3,33 +3,33 @@
33
// Hover to view descriptions of existing attributes.
44
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
55
{
6-
"version": "0.2.0",
7-
"configurations": [{
8-
"name": "Run Extension",
9-
"type": "extensionHost",
10-
"request": "launch",
11-
"runtimeExecutable": "${execPath}",
12-
"args": [
13-
"--extensionDevelopmentPath=${workspaceFolder}"
14-
],
15-
"outFiles": [
16-
"${workspaceFolder}/out/**/*.js"
17-
],
18-
"preLaunchTask": "npm: watch"
19-
},
20-
{
21-
"name": "Run Extension Tests",
22-
"type": "extensionHost",
23-
"request": "launch",
24-
"runtimeExecutable": "${execPath}",
25-
"args": [
26-
"--extensionDevelopmentPath=${workspaceFolder}",
27-
"--extensionTestsPath=${workspaceFolder}/out/test"
28-
],
29-
"outFiles": [
30-
"${workspaceFolder}/out/test/**/*.js"
31-
],
32-
"preLaunchTask": "npm: watch"
33-
}
34-
]
6+
"version": "0.2.0",
7+
"configurations": [{
8+
"name": "Run Extension",
9+
"type": "extensionHost",
10+
"request": "launch",
11+
"runtimeExecutable": "${execPath}",
12+
"args": [
13+
"--extensionDevelopmentPath=${workspaceFolder}"
14+
],
15+
"outFiles": [
16+
"${workspaceFolder}/out/**/*.js"
17+
],
18+
"preLaunchTask": "npm: watch"
19+
},
20+
{
21+
"name": "Run Extension Tests",
22+
"type": "extensionHost",
23+
"request": "launch",
24+
"runtimeExecutable": "${execPath}",
25+
"args": [
26+
"--extensionDevelopmentPath=${workspaceFolder}",
27+
"--extensionTestsPath=${workspaceFolder}/out/test"
28+
],
29+
"outFiles": [
30+
"${workspaceFolder}/out/test/**/*.js"
31+
],
32+
"preLaunchTask": "npm: watch"
33+
}
34+
]
3535
}

.vscode/tasks.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
// See https://go.microsoft.com/fwlink/?LinkId=733558
22
// for the documentation about the tasks.json format
33
{
4-
"version": "2.0.0",
5-
"tasks": [
6-
{
7-
"type": "npm",
8-
"script": "watch",
9-
"problemMatcher": "$tsc-watch",
10-
"isBackground": true,
11-
"presentation": {
12-
"reveal": "never"
13-
},
14-
"group": {
15-
"kind": "build",
16-
"isDefault": true
17-
}
18-
}
19-
]
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"type": "npm",
8+
"script": "watch",
9+
"problemMatcher": "$tsc-watch",
10+
"isBackground": true,
11+
"presentation": {
12+
"reveal": "never"
13+
},
14+
"group": {
15+
"kind": "build",
16+
"isDefault": true
17+
}
18+
}
19+
]
2020
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Example 'tasks.json' file to build project in monorepo with lerna
4949
* `fileName` returns file name (ex. _readme.md_)
5050
* `filePath` returns absolute file path (ex _c:/Projects/proj/info/readme.md_)
5151
* `fileRelativePath` returns file path, relative to workspace (ex _info/readme.md_)
52-
* `dirName` returs name of directory containings file (ex. _info_)
52+
* `dirName` returs name of directory containings file (ex. _info_)
5353
* `dirPath` returs absolute path to directory containings file (ex. _c:/Projects/proj/info_)
5454
* `dirRelativePath` returs relative path to directory containings file (ex. _info_)
5555
* `json` reads file as json object and returns value of property, specified in `PresentationConfig.json` property

package.json

Lines changed: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,52 @@
11
{
2-
"name": "lunatic-file-picker",
3-
"displayName": "file-picker",
4-
"description": "Simple tool select file from your project by name or json content",
5-
"version": "0.1.1",
2+
"name": "lunatic-file-picker",
3+
"displayName": "file-picker",
4+
"description": "Simple tool select file from your project by name or json content",
5+
"version": "0.1.1",
66
"publisher": "DmitriyMuraviov",
77
"repository": {
88
"type": "git",
99
"url": "https://github.com/mrLunatic/vsCodeFilePicker.git"
1010
},
11-
"engines": {
12-
"vscode": "^1.25.0"
13-
},
14-
"categories": [
15-
"Other"
16-
],
17-
"keywords": [
18-
"pick",
19-
"file",
20-
"inputs"
21-
],
22-
"activationEvents": [
23-
"onCommand:filePicker.pick"
24-
],
25-
"main": "./out/extension.js",
26-
"icon": "images/icon.png",
27-
"contributes": {
28-
"commands": [
29-
{
30-
"command": "filePicker.pick",
31-
"title": "Pick",
32-
"category": "FilePicker"
33-
}
34-
]
35-
},
36-
"scripts": {
37-
"vscode:prepublish": "npm run compile",
38-
"compile": "tsc -p ./",
39-
"watch": "tsc -watch -p ./",
40-
"postinstall": "node ./node_modules/vscode/bin/install"
41-
},
42-
"devDependencies": {
43-
"@types/node": "^8.10.25",
44-
"tslint": "^5.11.0",
45-
"typescript": "^2.6.1",
46-
"vscode": "^1.1.21"
47-
},
48-
"dependencies": {
49-
"@types/glob": "^7.1.1",
50-
"glob": "^7.1.3"
51-
}
11+
"engines": {
12+
"vscode": "^1.25.0"
13+
},
14+
"categories": [
15+
"Other"
16+
],
17+
"keywords": [
18+
"pick",
19+
"file",
20+
"inputs"
21+
],
22+
"activationEvents": [
23+
"onCommand:filePicker.pick"
24+
],
25+
"main": "./out/extension.js",
26+
"icon": "images/icon.png",
27+
"contributes": {
28+
"commands": [
29+
{
30+
"command": "filePicker.pick",
31+
"title": "Pick",
32+
"category": "FilePicker"
33+
}
34+
]
35+
},
36+
"scripts": {
37+
"vscode:prepublish": "npm run compile",
38+
"compile": "tsc -p ./",
39+
"watch": "tsc -watch -p ./",
40+
"postinstall": "node ./node_modules/vscode/bin/install"
41+
},
42+
"devDependencies": {
43+
"@types/node": "^8.10.25",
44+
"tslint": "^5.11.0",
45+
"typescript": "^2.6.1",
46+
"vscode": "^1.1.21"
47+
},
48+
"dependencies": {
49+
"@types/glob": "^7.1.1",
50+
"glob": "^7.1.3"
51+
}
5252
}

tsconfig.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"compilerOptions": {
3-
"module": "commonjs",
4-
"target": "es6",
5-
"outDir": "out",
6-
"lib": ["es6"],
7-
"sourceMap": true,
8-
"rootDir": "src"
9-
},
10-
"exclude": ["node_modules", ".vscode-test"]
2+
"compilerOptions": {
3+
"module": "commonjs",
4+
"target": "es6",
5+
"outDir": "out",
6+
"lib": ["es6"],
7+
"sourceMap": true,
8+
"rootDir": "src"
9+
},
10+
"exclude": ["node_modules", ".vscode-test"]
1111
}

tslint.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"rules": {
3-
"indent": [true, "spaces"],
4-
"semicolon": [true, "always"]
5-
}
2+
"rules": {
3+
"indent": [true, "spaces"],
4+
"semicolon": [true, "always"]
5+
}
66
}

0 commit comments

Comments
 (0)