|
| 1 | +{ |
| 2 | + "files.exclude": { |
| 3 | + "**/__pycache__": true, |
| 4 | + "**/*.pyc": true |
| 5 | + }, |
| 6 | + "files.autoSave": "onFocusChange", |
| 7 | + "files.insertFinalNewline": true, |
| 8 | + "files.trimTrailingWhitespace": true, |
| 9 | + "editor.formatOnPaste": false, |
| 10 | + "editor.formatOnSave": true, |
| 11 | + "editor.rulers": [ |
| 12 | + 120 |
| 13 | + ], |
| 14 | + "[python]": { |
| 15 | + "editor.formatOnSave": true, |
| 16 | + "editor.defaultFormatter": "charliermarsh.ruff", |
| 17 | + "editor.codeActionsOnSave": { |
| 18 | + "source.organizeImports": "explicit" |
| 19 | + }, |
| 20 | + }, |
| 21 | + "python.envFile": "${workspaceFolder}/.vscode/.env", |
| 22 | + "python-envs.pythonProjects": [ |
| 23 | + { |
| 24 | + "path": "", |
| 25 | + "envManager": "ms-python.python:venv", |
| 26 | + "packageManager": "ms-python.python:pip" |
| 27 | + } |
| 28 | + ], |
| 29 | + "ruff.organizeImports": true, |
| 30 | + "cucumberautocomplete.steps": [ |
| 31 | + "steps/**/*.py", |
| 32 | + ], |
| 33 | + "cucumberautocomplete.customParameters": [ |
| 34 | + { |
| 35 | + "parameter": "(u'", |
| 36 | + "value": "('" |
| 37 | + } |
| 38 | + ], |
| 39 | + "cucumberautocomplete.syncfeatures": "features/**/*.feature", |
| 40 | + "cucumberautocomplete.gherkinDefinitionPart": "@(given|when|then|step)\\(", |
| 41 | + "cucumberautocomplete.strictGherkinCompletion": false, |
| 42 | + "cucumberautocomplete.strictGherkinValidation": false, |
| 43 | + "cucumberautocomplete.onTypeFormat": true, |
| 44 | + "gherkiner.consecutiveBlankLinesToOne": true, |
| 45 | + "gherkiner.padding.symbol": "space", |
| 46 | + "gherkiner.padding.table": 10, |
| 47 | + "gherkiner.formatOnSave": true, |
| 48 | + "gherkiner.paddings": [ |
| 49 | + { |
| 50 | + "keyword": "Feature", |
| 51 | + "padding": 0 |
| 52 | + }, |
| 53 | + { |
| 54 | + "keyword": "Scenario Outline", |
| 55 | + "padding": 2 |
| 56 | + }, |
| 57 | + { |
| 58 | + "keyword": "Scenario", |
| 59 | + "padding": 2 |
| 60 | + }, |
| 61 | + { |
| 62 | + "keyword": "Given", |
| 63 | + "padding": 4 |
| 64 | + }, |
| 65 | + { |
| 66 | + "keyword": "When", |
| 67 | + "padding": 5 |
| 68 | + }, |
| 69 | + { |
| 70 | + "keyword": "Then", |
| 71 | + "padding": 5 |
| 72 | + }, |
| 73 | + { |
| 74 | + "keyword": "And", |
| 75 | + "padding": 6 |
| 76 | + }, |
| 77 | + { |
| 78 | + "keyword": "Actions", |
| 79 | + "padding": 2 |
| 80 | + }, |
| 81 | + { |
| 82 | + "keyword": "Examples", |
| 83 | + "padding": 4 |
| 84 | + } |
| 85 | + ] |
| 86 | +} |
0 commit comments