Skip to content

Commit 0d9ab38

Browse files
committed
Use spaces everywhere
1 parent e4629df commit 0d9ab38

10 files changed

+2191
-2230
lines changed

.eslintrc.json

+23-23
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
{
2-
"env": {
3-
"browser": false,
4-
"commonjs": true,
5-
"es6": true,
6-
"node": true,
7-
"mocha": true
8-
},
9-
"parserOptions": {
10-
"ecmaVersion": 2018,
11-
"ecmaFeatures": {
12-
"jsx": true
13-
},
14-
"sourceType": "module"
15-
},
16-
"rules": {
17-
"no-const-assign": "warn",
18-
"no-this-before-super": "warn",
19-
"no-undef": "warn",
20-
"no-unreachable": "warn",
21-
"no-unused-vars": "warn",
22-
"constructor-super": "warn",
23-
"valid-typeof": "warn"
24-
}
2+
"env": {
3+
"browser": false,
4+
"commonjs": true,
5+
"es6": true,
6+
"node": true,
7+
"mocha": true
8+
},
9+
"parserOptions": {
10+
"ecmaVersion": 2018,
11+
"ecmaFeatures": {
12+
"jsx": true
13+
},
14+
"sourceType": "module"
15+
},
16+
"rules": {
17+
"no-const-assign": "warn",
18+
"no-this-before-super": "warn",
19+
"no-undef": "warn",
20+
"no-unreachable": "warn",
21+
"no-unused-vars": "warn",
22+
"constructor-super": "warn",
23+
"valid-typeof": "warn"
24+
}
2525
}

.vscode/extensions.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
// See https://go.microsoft.com/fwlink/?LinkId=733558
3-
// for the documentation about the extensions.json format
4-
"recommendations": []
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the extensions.json format
4+
"recommendations": []
55
}

.vscode/launch.json

+20-20
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,24 @@
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-
{
9-
"name": "Run Extension",
10-
"type": "extensionHost",
11-
"request": "launch",
12-
"args": [
13-
"--extensionDevelopmentPath=${workspaceFolder}"
14-
]
15-
},
16-
{
17-
"name": "Extension Tests",
18-
"type": "extensionHost",
19-
"request": "launch",
20-
"args": [
21-
"--extensionDevelopmentPath=${workspaceFolder}",
22-
"--extensionTestsPath=${workspaceFolder}/test/suite/index"
23-
]
24-
}
25-
]
6+
"version": "0.2.0",
7+
"configurations": [
8+
{
9+
"name": "Run Extension",
10+
"type": "extensionHost",
11+
"request": "launch",
12+
"args": [
13+
"--extensionDevelopmentPath=${workspaceFolder}"
14+
]
15+
},
16+
{
17+
"name": "Extension Tests",
18+
"type": "extensionHost",
19+
"request": "launch",
20+
"args": [
21+
"--extensionDevelopmentPath=${workspaceFolder}",
22+
"--extensionTestsPath=${workspaceFolder}/test/suite/index"
23+
]
24+
}
25+
]
2626
}

jsconfig.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"compilerOptions": {
3-
"module": "commonjs",
4-
"target": "es6",
5-
"checkJs": false, /* Typecheck .js files. */
6-
"lib": [
7-
"es6"
8-
]
9-
},
10-
"exclude": [
11-
"node_modules"
12-
]
2+
"compilerOptions": {
3+
"module": "commonjs",
4+
"target": "es6",
5+
"checkJs": false, /* Typecheck .js files. */
6+
"lib": [
7+
"es6"
8+
]
9+
},
10+
"exclude": [
11+
"node_modules"
12+
]
1313
}

0 commit comments

Comments
 (0)