Skip to content

Commit

Permalink
feat: add .jupyter conf
Browse files Browse the repository at this point in the history
  • Loading branch information
ifooth committed Sep 16, 2024
1 parent adea93a commit afe6439
Showing 1 changed file with 50 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"preferences": {
"default_formatter": {
"python": [
"ruffformat"
],
"R": "formatR",
"rust": "rustfmt",
"c++11": "astyle"
}
},
"black": {
"line_length": 88,
"string_normalization": true
},
"yapf": {
"style_config": "google"
},
"autopep8": {},
"isort": {
"multi_line_output": 3,
"include_trailing_comma": true,
"force_grid_wrap": 0,
"use_parentheses": true,
"ensure_newline_before_comments": true,
"line_length": 88
},
"formatR": {
"indent": 2,
"arrow": true,
"wrap": true,
"width_cutoff": 150
},
"styler": {},
"formatOnSave": true,
"cacheFormatters": false,
"astyle": {
"args": []
},
"ruff": {
"args": [
"--select=I001"
]
},
"ruffformat": {
"args": []
},
"suppressFormatterErrors": false,
"suppressFormatterErrorsIFFAutoFormatOnSave": false
}

0 comments on commit afe6439

Please sign in to comment.