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
Copy file name to clipboardExpand all lines: package.json
+27-6Lines changed: 27 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1116,13 +1116,13 @@
1116
1116
}
1117
1117
},
1118
1118
{
1119
-
"title": "Linting - Robocop",
1119
+
"title": "Linting and Formatting - Robocop",
1120
1120
"type": "object",
1121
1121
"properties": {
1122
1122
"robotcode.robocop.enabled": {
1123
1123
"type": "boolean",
1124
1124
"default": true,
1125
-
"markdownDescription": "Enables 'robocop' code analysis, if installed. See [robocop](https://github.com/MarketSquare/robotframework-robocop)",
1125
+
"markdownDescription": "Enables 'robocop' code analysis, if installed. See [robocop](https://robocop.readthedocs.io/)",
1126
1126
"scope": "resource"
1127
1127
},
1128
1128
"robotcode.robocop.include": {
@@ -1132,15 +1132,35 @@
1132
1132
"type": "string"
1133
1133
},
1134
1134
"description": "Include specified 'robocop' rules. You can define rule by its name or id. Glob patterns are supported",
1135
-
"scope": "resource"
1135
+
"scope": "resource",
1136
+
"markdownDeprecationMessage": "This is a setting for an old `robotframework-robocop` version `<6.0` and will be removed in the future"
1136
1137
},
1137
1138
"robotcode.robocop.exclude": {
1138
1139
"type": "array",
1139
1140
"default": [],
1140
1141
"items": {
1141
1142
"type": "string"
1142
1143
},
1143
-
"description": "Exlude specified 'robocop' rules. You can define rule by its name or id. Glob patterns are supported",
1144
+
"description": "Exclude specified 'robocop' rules. You can define rule by its name or id. Glob patterns are supported",
1145
+
"scope": "resource",
1146
+
"markdownDeprecationMessage": "This is a setting for an old `robotframework-robocop` version `<6.0` and will be removed in the future."
1147
+
},
1148
+
"robotcode.robocop.ignoreGitDir": {
1149
+
"type": "boolean",
1150
+
"default": false,
1151
+
"markdownDescription": "Do not stop searching for config file when .git directory is found. Corresponds to the `--ignore-git-dir` of _robocop_ See [robocop](https://robocop.readthedocs.io/)",
1152
+
"scope": "resource"
1153
+
},
1154
+
"robotcode.robocop.configFile": {
1155
+
"type": "string",
1156
+
"default": null,
1157
+
"markdownDescription": "Read configuration from FILE path. Corresponds to the `--config` option of _robocop_ See [robocop](https://robocop.readthedocs.io/)",
1158
+
"scope": "resource"
1159
+
},
1160
+
"robotcode.robocop.ignoreFileConfig": {
1161
+
"type": "boolean",
1162
+
"default": false,
1163
+
"markdownDescription": "Do not load configuration files. Corresponds to the `--ignore-file-config` option of _robocop_ See [robocop](https://robocop.readthedocs.io/)",
1144
1164
"scope": "resource"
1145
1165
},
1146
1166
"robotcode.robocop.configurations": {
@@ -1149,8 +1169,9 @@
1149
1169
"items": {
1150
1170
"type": "string"
1151
1171
},
1152
-
"description": "Configure 'robocop' checker with parameter value.",
1153
-
"scope": "resource"
1172
+
"description": "Configure checker or report with parameter value. Corresponds to the `--configure` option of _robocop_ See [robocop](https://robocop.readthedocs.io/)",
1173
+
"scope": "resource",
1174
+
"markdownDeprecationMessage": "This is a setting for an old `robotframework-robocop` version `<6.0` and will be removed in the future."
0 commit comments