File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 99 " lib/idp_common_pkg"
1010 ],
1111 "notebook.formatOnSave.enabled" : true ,
12+ "notebook.codeActionsOnSave" : {
13+ "notebook.source.fixAll" : " explicit" ,
14+ "notebook.source.organizeImports" : " explicit"
15+ },
1216 "[python]" : {
1317 "editor.formatOnSave" : true ,
14- "editor.defaultFormatter" : " charliermarsh.ruff"
18+ "editor.defaultFormatter" : " charliermarsh.ruff" ,
19+ "editor.codeActionsOnSave" : {
20+ "source.fixAll" : " explicit" ,
21+ "source.organizeImports" : " explicit"
22+ },
1523 },
1624 "makefile.configureOnOpen" : false
1725 },
Original file line number Diff line number Diff line change @@ -68,6 +68,10 @@ unfixable = []
6868# Allow unused variables when underscore-prefixed.
6969dummy-variable-rgx = " ^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
7070
71+ [lint .per-file-ignores ]
72+ # Let's ignore some annoying rules in notebooks
73+ "notebooks/*" = [" F401" ]
74+
7175[format ]
7276# Like Black, use double quotes for strings.
7377quote-style = " double"
You can’t perform that action at this time.
0 commit comments