diff --git a/.gitignore b/.gitignore index 0082d90..0ec471b 100644 --- a/.gitignore +++ b/.gitignore @@ -17,6 +17,7 @@ package-lock.json # IDE configurations .idea +.vs .vscode/* !.vscode/settings.json !.vscode/extensions.json diff --git a/.vscode/extensions.json b/.vscode/extensions.json deleted file mode 100644 index 082bc94..0000000 --- a/.vscode/extensions.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "recommendations": ["ms-vscode-remote.remote-containers"] -} diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 5e8a04f..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - // Prettier - "editor.defaultFormatter": "esbenp.prettier-vscode", - "editor.formatOnSave": true, - // Shopify Liquid - "files.associations": { - "*.html": "liquid" - }, - "[markdown]": { - "editor.defaultFormatter": "yzhang.markdown-all-in-one" - }, - // Formatter - "[html][liquid]": { - "editor.defaultFormatter": "Shopify.theme-check-vscode" - }, - "[shellscript]": { - "editor.defaultFormatter": "mkhl.shfmt" - }, - // Disable vscode built-in stylelint - "css.validate": false, - "scss.validate": false, - "less.validate": false, - // Stylint extension settings - "stylelint.snippet": ["css", "scss"], - "stylelint.validate": ["css", "scss"], - // Run tasks in macOS - "terminal.integrated.profiles.osx": { - "zsh": { "path": "/bin/zsh", "args": ["-l", "-i"] } - } -} diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index 7f0fdb8..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "Run Jekyll Server", - "type": "shell", - "command": "./tools/run.sh", - "group": { - "kind": "build", - "isDefault": true - }, - "problemMatcher": [], - "detail": "Runs the Jekyll server with live reload." - }, - { - "label": "Build Jekyll Site", - "type": "shell", - "command": "./tools/test.sh", - "group": { - "kind": "build" - }, - "problemMatcher": [], - "detail": "Build the Jekyll site for production." - } - ] -}