Skip to content

Commit

Permalink
Use global settings for ignorePatterns default (#327)
Browse files Browse the repository at this point in the history
  • Loading branch information
taesungh authored Aug 15, 2024
1 parent 815cd68 commit 8832617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bundled/tool/lsp_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ def _get_global_defaults():
"W": "Warning",
},
),
"ignorePatterns": [],
"ignorePatterns": GLOBAL_SETTINGS.get("ignorePatterns", []),
"importStrategy": GLOBAL_SETTINGS.get("importStrategy", "useBundled"),
"showNotifications": GLOBAL_SETTINGS.get("showNotifications", "off"),
}
Expand Down

0 comments on commit 8832617

Please sign in to comment.