Skip to content

Commit ff1fb62

Browse files
committed
fixing lint issue (fixes metacall#68)
1 parent 988f4f9 commit ff1fb62

File tree

4 files changed

+15
-11
lines changed

4 files changed

+15
-11
lines changed

.editorconfig

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
insert_final_newline = true

.vscode/settings.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
"source.organizeImports": "explicit",
66
"source.fixAll": "explicit"
77
},
8-
"editor.rulers": [80],
8+
"editor.rulers": [
9+
80
10+
],
911
"editor.quickSuggestions": {
1012
"comments": "on",
1113
"strings": "on",
@@ -14,5 +16,8 @@
1416
"editor.suggestOnTriggerCharacters": true,
1517
"[shellscript]": {
1618
"editor.defaultFormatter": "foxundermoon.shell-format"
19+
},
20+
"[properties]": {
21+
"editor.defaultFormatter": "foxundermoon.shell-format"
1722
}
18-
}
23+
}
+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{
22
"language_id": "py",
33
"path": ".",
4-
"scripts": [
5-
"index.py"
6-
]
4+
"scripts": ["index.py"]
75
}

tsconfig.json

+2-6
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,5 @@
77
"outDir": "dist",
88
"esModuleInterop": true
99
},
10-
"include": [
11-
"types/*.ts",
12-
"src/**/*.ts",
13-
"test/**/*.js"
14-
]
15-
}
10+
"include": ["types/*.ts", "src/**/*.ts", "test/**/*.js"]
11+
}

0 commit comments

Comments
 (0)