Add tab width option (#6848)

This commit is contained in:
Micha Reiser 2023-08-26 12:29:58 +02:00 committed by GitHub
parent f91bacbb94
commit 9d77552e18
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 345 additions and 44 deletions

View file

@ -0,0 +1,3 @@
{
"tab_width": 8
}

View file

@ -2,14 +2,21 @@
{
"indent_style": {
"Space": 4
}
},
"tab_width": 8
},
{
"indent_style": {
"Space": 2
}
},
"tab_width": 8
},
{
"indent_style": "Tab"
"indent_style": "Tab",
"tab_width": 8
},
{
"indent_style": "Tab",
"tab_width": 4
}
]

View file

@ -0,0 +1,8 @@
[
{
"tab_width": 2
},
{
"tab_width": 4
}
]

View file

@ -0,0 +1,8 @@
# Fits with tab width 2
1 + " 012345678901234567890123456789012345678901234567890123456789012345678901234567890"
# Fits with tab width 4
1 + " 0123456789012345678901234567890123456789012345678901234567890123456789012345678"
# Fits with tab width 8
1 + " 012345678901234567890123456789012345678901234567890123456789012345678901234"