Skip to content

Commit

Permalink
fixing lint issue (fixes metacall#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
HeeManSu committed Aug 24, 2024
1 parent 988f4f9 commit ff1fb62
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 11 deletions.
5 changes: 5 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
root = true

[*]
end_of_line = lf
insert_final_newline = true
9 changes: 7 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
"source.organizeImports": "explicit",
"source.fixAll": "explicit"
},
"editor.rulers": [80],
"editor.rulers": [
80
],
"editor.quickSuggestions": {
"comments": "on",
"strings": "on",
Expand All @@ -14,5 +16,8 @@
"editor.suggestOnTriggerCharacters": true,
"[shellscript]": {
"editor.defaultFormatter": "foxundermoon.shell-format"
},
"[properties]": {
"editor.defaultFormatter": "foxundermoon.shell-format"
}
}
}
4 changes: 1 addition & 3 deletions test/data/python-base-app/metacall.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
"language_id": "py",
"path": ".",
"scripts": [
"index.py"
]
"scripts": ["index.py"]
}
8 changes: 2 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,5 @@
"outDir": "dist",
"esModuleInterop": true
},
"include": [
"types/*.ts",
"src/**/*.ts",
"test/**/*.js"
]
}
"include": ["types/*.ts", "src/**/*.ts", "test/**/*.js"]
}

0 comments on commit ff1fb62

Please sign in to comment.