-
Notifications
You must be signed in to change notification settings - Fork 676
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
509 additions
and
330 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
[formatting] | ||
# compatibility with toml-sort-fix pre-commit hook | ||
# cspell: disable-next-line | ||
# compatibility between toml-sort-fix pre-commit hook and panekj.even-betterer-toml extension | ||
align_comments = false | ||
array_trailing_comma = false | ||
compact_arrays = true | ||
compact_entries = false | ||
compact_inline_tables = true | ||
inline_table_expand = false | ||
reorder_keys = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,21 @@ | ||
{ | ||
"recommendations": [ | ||
"Tyriar.sort-lines", | ||
"charliermarsh.ruff", | ||
"esbenp.prettier-vscode", | ||
"hbenl.vscode-test-explorer", | ||
"ms-python.black-formatter", | ||
"ms-python.isort", | ||
"ms-python.mypy-type-checker", | ||
"ms-python.pylint", | ||
"ms-python.python", | ||
"ms-python.vscode-pylance", | ||
"ms-vscode.live-server", | ||
"redhat.ansible", | ||
"redhat.vscode-yaml", | ||
"ryanluker.vscode-coverage-gutters", | ||
"shardulm94.trailing-spaces", | ||
"tamasfe.even-better-toml", | ||
"timonwong.shellcheck", | ||
"znck.grammarly", | ||
] | ||
"recommendations": [ | ||
"Tyriar.sort-lines", | ||
"charliermarsh.ruff", | ||
"esbenp.prettier-vscode", | ||
"hbenl.vscode-test-explorer", | ||
"ms-python.isort", | ||
"ms-python.mypy-type-checker", | ||
"ms-python.pylint", | ||
"ms-python.python", | ||
"ms-python.vscode-pylance", | ||
"ms-vscode.live-server", | ||
"redhat.ansible", | ||
"redhat.vscode-yaml", | ||
"ryanluker.vscode-coverage-gutters", | ||
"shardulm94.trailing-spaces", | ||
"tamasfe.even-better-toml", | ||
"timonwong.shellcheck", | ||
"znck.grammarly" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,45 @@ | ||
{ | ||
"[markdown]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
"[markdown]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[python]": { | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll": "explicit", | ||
"source.organizeImports": "explicit" | ||
}, | ||
"editor.formatOnSave": true, | ||
"evenBetterToml.formatter.allowedBlankLines": 2, | ||
"files.exclude": { | ||
"*.egg-info": true, | ||
".pytest_cache": true, | ||
".tox": true, | ||
"__pycache__": true, | ||
"build": true | ||
}, | ||
"git.ignoreLimitWarning": true, | ||
"grammarly.config.documentDomain": "academic", | ||
"grammarly.files.include": [ | ||
"**/*.txt", | ||
"**/*.md" | ||
], | ||
"python.experiments.optInto": [ | ||
"pythonTestAdapter" | ||
], | ||
"python.terminal.activateEnvironment": true, | ||
"python.testing.pytestEnabled": true, | ||
"python.testing.unittestEnabled": false, | ||
"mypy-type-checker.severity": { | ||
"error": "Warning", | ||
}, | ||
"sortLines.filterBlankLines": true, | ||
"yaml.completion": true, | ||
"yaml.customTags": [ | ||
"!encrypted/pkcs1-oaep scalar", | ||
"!vault scalar" | ||
], | ||
"yaml.format.enable": false, | ||
"yaml.validate": true, | ||
"evenBetterToml.formatter.alignComments": false, | ||
"[python]": { | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports": "explicit", | ||
"source.fixAll": "explicit" | ||
}, | ||
"editor.defaultFormatter": "ms-python.black-formatter", | ||
"editor.formatOnSave": true | ||
}, | ||
"evenBetterToml.formatter.arrayTrailingComma": true, | ||
"[toml]": { | ||
"editor.defaultFormatter": "panekj.even-betterer-toml" | ||
}, | ||
"sonarlint.connectedMode.project": { | ||
"connectionId": "ansible", | ||
"projectKey": "ansible_ansible-lint" | ||
} | ||
"editor.defaultFormatter": "charliermarsh.ruff", | ||
"editor.formatOnSave": true | ||
}, | ||
"[toml]": { | ||
"editor.defaultFormatter": "panekj.even-betterer-toml" | ||
}, | ||
"editor.formatOnSave": true, | ||
"evenBetterToml.formatter.alignComments": false, | ||
"evenBetterToml.formatter.arrayTrailingComma": true, | ||
"files.exclude": { | ||
"*.egg-info": true, | ||
".pytest_cache": true, | ||
".tox": true, | ||
"__pycache__": true, | ||
"build": true | ||
}, | ||
"git.ignoreLimitWarning": true, | ||
"grammarly.config.documentDomain": "academic", | ||
"grammarly.files.include": ["**/*.txt", "**/*.md"], | ||
"mypy-type-checker.severity": { | ||
"error": "Warning" | ||
}, | ||
"python.experiments.optInto": ["pythonTestAdapter"], | ||
"python.terminal.activateEnvironment": true, | ||
"python.testing.pytestEnabled": true, | ||
"python.testing.unittestEnabled": false, | ||
"sonarlint.connectedMode.project": { | ||
"connectionId": "ansible", | ||
"projectKey": "ansible_ansible-lint" | ||
}, | ||
"sortLines.filterBlankLines": true, | ||
"yaml.completion": true, | ||
"yaml.customTags": ["!encrypted/pkcs1-oaep scalar", "!vault scalar"], | ||
"yaml.format.enable": false, | ||
"yaml.validate": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,3 +21,4 @@ ignorePaths: | |
- src/ansiblelint/schemas/*.json | ||
# Other | ||
- "*.svg" | ||
- ".vscode/**" |
Oops, something went wrong.