diff options
author | Jesús <heckyel@hyperbola.info> | 2022-02-11 11:08:56 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2022-02-11 11:08:56 -0500 |
commit | 69e20fc11381bdc94c416f11527289a34ffb89ed (patch) | |
tree | 4b8969904958e4a377a9dd00cabd972c1ce22429 /.vscode | |
parent | 421de00c8bb27fd0cd01d19ed4c2681ef2d63446 (diff) | |
download | plyr-69e20fc11381bdc94c416f11527289a34ffb89ed.tar.lz plyr-69e20fc11381bdc94c416f11527289a34ffb89ed.tar.xz plyr-69e20fc11381bdc94c416f11527289a34ffb89ed.zip |
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/extensions.json | 12 | ||||
-rw-r--r-- | .vscode/launch.json | 15 | ||||
-rw-r--r-- | .vscode/settings.json | 1 |
3 files changed, 28 insertions, 0 deletions
diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 00000000..5685abff --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,12 @@ +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "dbaeumer.vscode-eslint", + "esbenp.prettier-vscode", + "wayou.vscode-todo-highlight", + "wix.vscode-import-cost", + "stylelint.vscode-stylelint", + "pflannery.vscode-versionlens" + ] +} diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..3e037998 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "chrome", + "request": "launch", + "name": "Launch Chrome against localhost", + "url": "http://localhost/dev/plyr/demo", + "webRoot": "${workspaceFolder}" + } + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1 @@ +{}
\ No newline at end of file |