Skip to content

Commit 702d981

Browse files
committed
ohp
1 parent 7327a7a commit 702d981

32 files changed

+6217
-6216
lines changed

.editorconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ root = true
22

33
[*]
44
indent_size = 2
5+
indent_style = space
56
insert_final_newline = true
67
end_of_line = lf
78
trim_trailing_whitespace = true

.eslintrc.json

Lines changed: 58 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,60 @@
11
{
2-
"root": true,
3-
"parser": "@typescript-eslint/parser",
4-
"parserOptions": {
5-
"ecmaVersion": 6,
6-
"sourceType": "module"
7-
},
8-
"plugins": ["@typescript-eslint", "prettier"],
9-
"extends": [
10-
"eslint:recommended",
11-
"plugin:@typescript-eslint/recommended",
12-
"plugin:import/recommended",
13-
"plugin:import/typescript",
14-
"plugin:md/prettier",
15-
"prettier"
16-
],
17-
"overrides": [
18-
{
19-
"files": ["*.md"],
20-
"parser": "markdown-eslint-parser"
21-
}
22-
],
23-
"rules": {
24-
"curly": "error",
25-
"eqeqeq": "error",
26-
"no-throw-literal": "error",
27-
"no-console": "error",
28-
"prettier/prettier": "error",
29-
"import/order": [
30-
"error",
31-
{
32-
"alphabetize": {
33-
"order": "asc"
34-
},
35-
"groups": [["builtin", "external", "internal"], "parent", "sibling"]
36-
}
37-
],
38-
"import/no-unresolved": [
39-
"error",
40-
{
41-
"ignore": ["vscode"]
42-
}
43-
],
44-
"@typescript-eslint/no-unused-vars": [
45-
"error",
46-
{
47-
"varsIgnorePattern": "^_"
48-
}
49-
],
50-
"md/remark": [
51-
"error",
52-
{
53-
"no-duplicate-headings": {
54-
"sublings_only": true
55-
}
56-
}
57-
]
58-
},
59-
"ignorePatterns": ["out", "dist", "**/*.d.ts"]
2+
"root": true,
3+
"parser": "@typescript-eslint/parser",
4+
"parserOptions": {
5+
"ecmaVersion": 6,
6+
"sourceType": "module"
7+
},
8+
"plugins": ["@typescript-eslint", "prettier"],
9+
"extends": [
10+
"eslint:recommended",
11+
"plugin:@typescript-eslint/recommended",
12+
"plugin:import/recommended",
13+
"plugin:import/typescript",
14+
"plugin:md/prettier",
15+
"prettier"
16+
],
17+
"overrides": [
18+
{
19+
"files": ["*.md"],
20+
"parser": "markdown-eslint-parser"
21+
}
22+
],
23+
"rules": {
24+
"curly": "error",
25+
"eqeqeq": "error",
26+
"no-throw-literal": "error",
27+
"no-console": "error",
28+
"prettier/prettier": "error",
29+
"import/order": [
30+
"error",
31+
{
32+
"alphabetize": {
33+
"order": "asc"
34+
},
35+
"groups": [["builtin", "external", "internal"], "parent", "sibling"]
36+
}
37+
],
38+
"import/no-unresolved": [
39+
"error",
40+
{
41+
"ignore": ["vscode"]
42+
}
43+
],
44+
"@typescript-eslint/no-unused-vars": [
45+
"error",
46+
{
47+
"varsIgnorePattern": "^_"
48+
}
49+
],
50+
"md/remark": [
51+
"error",
52+
{
53+
"no-duplicate-headings": {
54+
"sublings_only": true
55+
}
56+
}
57+
]
58+
},
59+
"ignorePatterns": ["out", "dist", "**/*.d.ts"]
6060
}

.vscode/launch.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"version": "0.2.0",
3-
"configurations": [
4-
{
5-
"name": "Run Extension",
6-
"type": "extensionHost",
7-
"request": "launch",
8-
"args": ["--extensionDevelopmentPath=${workspaceFolder}"],
9-
"outFiles": ["${workspaceFolder}/dist/**/*.js"]
10-
}
11-
]
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Run Extension",
6+
"type": "extensionHost",
7+
"request": "launch",
8+
"args": ["--extensionDevelopmentPath=${workspaceFolder}"],
9+
"outFiles": ["${workspaceFolder}/dist/**/*.js"]
10+
}
11+
]
1212
}

.vscode/tasks.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"version": "2.0.0",
3-
"tasks": [
4-
{
5-
"type": "typescript",
6-
"tsconfig": "tsconfig.json",
7-
"problemMatcher": ["$tsc"],
8-
"group": "build",
9-
"label": "tsc: build"
10-
}
11-
]
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "typescript",
6+
"tsconfig": "tsconfig.json",
7+
"problemMatcher": ["$tsc"],
8+
"group": "build",
9+
"label": "tsc: build"
10+
}
11+
]
1212
}

0 commit comments

Comments
 (0)