abelsiqueira / BestieTemplate.jl

Template for Julia Programming Language packages using the copier engine.
http://abelsiqueira.com/BestieTemplate.jl/
Mozilla Public License 2.0
42 stars 9 forks source link

Add VSCode settings #298

Open fdiblen opened 3 months ago

fdiblen commented 3 months ago

Description

VSCode users can benefit from project specific VSCode settings.

The minimal settings file (.vscode/settings.json) can suggest users to install some useful extensions.

{
    "recommendations": [
        "julialang.language-julia",
        "juliacomputing.juliahub",
        "editorconfig.editorconfig",
        "elagil.pre-commit-helper"
    ]
}

Similar feature can be considered for vim but I think it should be a separate issue.

Validation and testing

No response

Motivation

It will help VSCode users to add Julia and editorconfig support easily.

Target audience

VSCode users

Can you help?

Yes, I can create a PR.