VS Code settings useful in xPack projects.
Overview
VS Code has many extensions, and many settings to customise them.
Below are some settings that were useful in xPack projects.
Silence annoying questions
Some VS Code extensions assume that all projects use them, and are trying to automate some things even when this is not necessary.
Some of these annoying behaviours can be disabled, for example:
"cmake.ignoreCMakeListsMissing": true,
"cmake.configureOnOpen": false,
"makefile.configureOnOpen": false
Configure editor
"editor.rulers": [
80
],
"editor.wordWrap": "on"