File size: 2,712 Bytes
d636ed0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dc9c12b
d636ed0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
    "editor.insertSpaces": true,
    "editor.tabSize": 4,
    "files.trimTrailingWhitespace": true,
    "editor.rulers": [100, 120],

    "files.associations": {
        "*.yaml": "yaml"
    },
    "files.exclude": {
        "**/.git": true,
        "**/.svn": true,
        "**/.hg": true,
        "**/CVS": true,
        "**/.DS_Store": true,
        "**/Thumbs.db": true,
        "**/.ruff_cache": true,
        "**/__pycache__": true,
        "**/*.egg-info": true
    },

    "[shellscript]": {
        "files.eol": "\n",
        "editor.tabSize": 4,
        "editor.detectIndentation": false
    },

    "[python]": {
        "editor.wordBasedSuggestions": "off",
        "editor.formatOnSave": true,
        "editor.defaultFormatter": "charliermarsh.ruff",
        "editor.codeActionsOnSave": {
            "source.organizeImports": "always"
        }
    },
    "ruff.format.args": ["--line-length", "110"],
    "python.analysis.extraPaths": ["./src", "./"],

    "[json]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode",
        "editor.detectIndentation": false,
        "editor.formatOnSaveMode": "file",
        "editor.formatOnSave": true,
        "editor.tabSize": 2
    },
    "[jsonc]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode",
        "editor.detectIndentation": false,
        "editor.formatOnSaveMode": "file",
        "editor.formatOnSave": true,
        "editor.tabSize": 2
    },

    "[toml]": {
        "editor.tabSize": 2,
        "editor.detectIndentation": false,
        "editor.formatOnSave": true,
        "editor.formatOnSaveMode": "file",
        "editor.defaultFormatter": "tamasfe.even-better-toml",
        "editor.rulers": [80, 100]
    },
    "evenBetterToml.formatter.columnWidth": 88,

    "[yaml]": {
        "editor.detectIndentation": false,
        "editor.tabSize": 2,
        "editor.formatOnSave": true,
        "editor.formatOnSaveMode": "file",
        "diffEditor.ignoreTrimWhitespace": false,
        "editor.defaultFormatter": "redhat.vscode-yaml"
    },
    "yaml.format.bracketSpacing": true,
    "yaml.format.proseWrap": "preserve",
    "yaml.format.singleQuote": false,
    "yaml.format.printWidth": 110,

    "[hcl]": {
        "editor.detectIndentation": false,
        "editor.formatOnSave": true,
        "editor.formatOnSaveMode": "file",
        "editor.defaultFormatter": "fredwangwang.vscode-hcl-format"
    },

    "[markdown]": {
        "files.trimTrailingWhitespace": false
    },

    "css.lint.validProperties": ["dock", "content-align", "content-justify"],
    "[css]": {
        "editor.formatOnSave": true
    },

    "remote.autoForwardPorts": false,
    "remote.autoForwardPortsSource": "process"
}