You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: new robotcode.robotidy.ignoreGitDir and robotcode.robotidy.config setting to set the config file for _robotidy_ and to ignore git files if searching for config files for _robotidy_
Copy file name to clipboardExpand all lines: package.json
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -641,6 +641,18 @@
641
641
"markdownDescription": "Enables 'robotidy' code formatting, if installed. See [robotidy](https://github.com/MarketSquare/robotframework-tidy)",
642
642
"scope": "resource"
643
643
},
644
+
"robotcode.robotidy.ignoreGitDir": {
645
+
"type": "boolean",
646
+
"default": true,
647
+
"markdownDescription": "Ignore .git directories when searching for the default configuration file. Corresponds to the `--ignore-git-dir` of _robotidy_ See [robotidy](https://github.com/MarketSquare/robotframework-tidy)",
648
+
"scope": "resource"
649
+
},
650
+
"robotcode.robotidy.config": {
651
+
"type": "string",
652
+
"default": "",
653
+
"markdownDescription": "Read configuration from FILE path. Corresponds to the `--config` of _robotidy_ See [robotidy](https://github.com/MarketSquare/robotframework-tidy)",
0 commit comments