MRC-CSO-SPHSU / UKSEABMLib.jl

MIT License
1 stars 1 forks source link

Blue style coding conventions #34

Closed AtiyahElsheikh closed 1 year ago

AtiyahElsheikh commented 1 year ago

Blue Style

This seems to a recognized coding guideline from the Julia community. The purpose is not to follow all conventions up to the tiniest details. But It is good to follow something and stick with it. Some points to follow:

AtiyahElsheikh commented 1 year ago

VSCode Settings

{
    "[julia]": {
        "editor.detectIndentation": false,
        "editor.insertSpaces": true,
        "editor.tabSize": 4,
        "files.insertFinalNewline": true,
        "files.trimFinalNewlines": true,
        "files.trimTrailingWhitespace": true,
        "editor.rulers": [92],
    },
}