Skip to content

Commit f888c81

Browse files
committed
add robocop disables
1 parent 6f63faf commit f888c81

3 files changed

Lines changed: 14 additions & 5 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@
5959
"editor.formatOnSave": true,
6060
"editor.defaultFormatter": "charliermarsh.ruff"
6161
},
62+
"[robot]": {
63+
"editor.formatOnSave": true,
64+
"editor.defaultFormatter": "d-biehl.robotcode"
65+
},
6266
// https://code.visualstudio.com/docs/python/testing
6367
// https://code.visualstudio.com/docs/python/settings-reference#_testing-settings
6468
"python.testing.pytestArgs": [

.pre-commit-config.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ repos:
2727
# https://robocop.readthedocs.io/en/stable/integrations.html#pre-commit
2828
rev: "v6.0.0"
2929
hooks:
30-
- id: robocop
3130
- id: robocop-format
3231
# Other Pre Commit Hooks
3332
- repo: https://github.com/pre-commit/pre-commit-hooks

atests/dummy.robot

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1+
*** Comments ***
2+
# robocop: disable=missing-doc-suite
3+
4+
15
*** Settings ***
2-
Library DoSomething
6+
Library DoSomething
7+
38

49
*** Variables ***
5-
${MY_VAR} Hello World
10+
${MY_VAR} Hello World
11+
612

713
*** Test Cases ***
8-
first
14+
First # robocop: disable=missing-doc-test-case
915
Hello World
10-
Log ${MY_VAR}
16+
Log ${MY_VAR}

0 commit comments

Comments
 (0)