Skip to content

Commit

Permalink
feat: add initial version
Browse files Browse the repository at this point in the history
  • Loading branch information
dfenerski committed Feb 9, 2024
0 parents commit ee8a1e3
Show file tree
Hide file tree
Showing 12 changed files with 775 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Editor configuration, see http://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
max_line_length = off
trim_trailing_whitespace = false
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"singleQuote": true,
"trailingComma": "all"
}
17 changes: 17 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"eamodio.gitlens",
"EditorConfig.EditorConfig",
"esbenp.prettier-vscode",
"GitHub.copilot",
"Gruntfuggly.todo-tree",
"nrwl.angular-console",
"redhat.vscode-xml",
"redhat.vscode-yaml",
"ritwickdey.LiveServer",
"yoavbls.pretty-ts-errors",
"firsttris.vscode-jest-runner"
],
"unwantedRecommendations": []
}
12 changes: 12 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Attach to Node Functions",
"type": "node",
"request": "attach",
"port": 9229,
"preLaunchTask": "func: host start"
}
]
}
23 changes: 23 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"debug.internalConsoleOptions": "neverOpen",
"git.enableSmartCommit": true,
"git.autofetch": true,
"git.confirmSync": false,
"redhat.telemetry.enabled": false,
"workbench.editor.wrapTabs": true,
"terminal.integrated.defaultProfile.windows": "Git Bash",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"[xml]": {
"editor.defaultFormatter": "redhat.vscode-xml"
},
"typescript.tsdk": "node_modules\\typescript\\lib",
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"[javascript]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "never"
}
}
}
33 changes: 33 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "npm build (functions)",
"command": "npm run build",
"dependsOn": "npm install (functions)",
"problemMatcher": "$tsc",
"options": {
"cwd": "${workspaceFolder}/function"
}
},
{
"type": "shell",
"label": "npm install (functions)",
"command": "npm install",
"options": {
"cwd": "${workspaceFolder}/function"
}
},
{
"type": "shell",
"label": "npm prune (functions)",
"command": "npm prune --production",
"dependsOn": "npm build (functions)",
"problemMatcher": [],
"options": {
"cwd": "${workspaceFolder}/function"
}
}
]
}
Loading

0 comments on commit ee8a1e3

Please sign in to comment.