From 34f3efc42a281c87c75330e2fc08f874c64f0e5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Kuna?= <1282324+codecalm@users.noreply.github.com> Date: Mon, 16 Sep 2024 19:21:30 +0200 Subject: [PATCH] Init VS Code config (#1959) * feat: init VS Code * Create chilly-mayflies-ring.md --- .changeset/chilly-mayflies-ring.md | 5 +++++ .gitignore | 2 -- .vscode/settings.json | 14 ++++++++++++++ 3 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 .changeset/chilly-mayflies-ring.md create mode 100644 .vscode/settings.json diff --git a/.changeset/chilly-mayflies-ring.md b/.changeset/chilly-mayflies-ring.md new file mode 100644 index 000000000..171d4d267 --- /dev/null +++ b/.changeset/chilly-mayflies-ring.md @@ -0,0 +1,5 @@ +--- +"@tabler/core": patch +--- + +Initialize Visual Studio Code config diff --git a/.gitignore b/.gitignore index a27689e3f..25ac48bbb 100644 --- a/.gitignore +++ b/.gitignore @@ -12,8 +12,6 @@ node_modules/ /.cache/ .sass-cache/ -.vscode/ - /_gh_pages/ /site/docs/**/dist/ /site/static/**/dist/ diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..f8bcf34c1 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,14 @@ +{ + "files.exclude": { + "**/.git": false, + "**/.svn": false, + "**/.hg": false, + "**/CVS": false, + "**/.DS_Store": false, + "**/Thumbs.db": false, + "**/.idea/": false, + "dist": false, + "demo": false + }, + "explorerExclude.backup": {} +} \ No newline at end of file