mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2024-11-11 02:10:11 +01:00
54 lines
1.4 KiB
JSON
54 lines
1.4 KiB
JSON
{
|
|
"java.compile.nullAnalysis.mode": "automatic",
|
|
"files.eol": "auto",
|
|
"java.configuration.updateBuildConfiguration": "interactive",
|
|
"black-formatter.args": ["--line-length", "127"],
|
|
"flake8.args": ["--max-line-length", "127"],
|
|
"pylint.args": ["max-line-length", "127"],
|
|
"[java]": {
|
|
"editor.tabSize": 4,
|
|
"editor.detectIndentation": false,
|
|
"editor.rulers": [127]
|
|
},
|
|
"[python]": {
|
|
"editor.tabSize": 2,
|
|
"editor.detectIndentation": false,
|
|
"editor.rulers": [127]
|
|
},
|
|
"[gradle-build]": {
|
|
"editor.tabSize": 4,
|
|
"editor.detectIndentation": false,
|
|
"editor.rulers": [127]
|
|
},
|
|
"[gradle]": {
|
|
"editor.tabSize": 4,
|
|
"editor.detectIndentation": false,
|
|
"editor.rulers": [127]
|
|
},
|
|
"[html]": {
|
|
"editor.tabSize": 2,
|
|
"editor.rulers": [127],
|
|
"files.trimFinalNewlines": false,
|
|
"files.insertFinalNewline": false
|
|
},
|
|
"[javascript]": {
|
|
"editor.tabSize": 2,
|
|
"editor.rulers": [127]
|
|
},
|
|
"[yaml]": {
|
|
"files.trimFinalNewlines": false,
|
|
"files.insertFinalNewline": false
|
|
},
|
|
"diffEditor.maxComputationTime": 0,
|
|
"editor.wordSegmenterLocales": null,
|
|
"editor.guides.bracketPairs": "active",
|
|
"editor.guides.bracketPairsHorizontal": "active",
|
|
"files.insertFinalNewline": true,
|
|
"files.trimFinalNewlines": true,
|
|
"files.trimTrailingWhitespace": true,
|
|
"editor.indentSize": "tabSize",
|
|
"editor.stickyScroll.enabled": false,
|
|
"editor.minimap.enabled": false,
|
|
"editor.formatOnSave": true
|
|
}
|