From be4ad05e9d26044f8173a2ebd0a1bdeea195f859 Mon Sep 17 00:00:00 2001 From: HicaroD Date: Fri, 8 Sep 2023 19:44:03 -0700 Subject: [PATCH] VSCode configuration for QLJS developers This file is only matters for developers who uses Visual Studio Code editor for development in quick-lint-js. --- .vscode/c_cpp_properties.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .vscode/c_cpp_properties.json diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000000..9dc3951985 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,13 @@ +{ + "configurations": [ + { + "name": "Linux", + "defines": [], + "compilerPath": "/usr/bin/clang", + "cppStandard": "c++20", + "intelliSenseMode": "linux-clang-x64", + "compileCommands": "${workspaceFolder}/build/compile_commands.json" + } + ], + "version": 4 +}