-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #310 from nautobot/develop
v3.0.2
- Loading branch information
Showing
176 changed files
with
7,801 additions
and
2,933 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
--- | ||
skips: | ||
- "B404" # Ignore subprocess | ||
# No need to check for security issues in the test scripts! | ||
exclude_dirs: | ||
- "./nautobot_chatops/tests/" | ||
|
||
skips: | ||
- "B404" | ||
- "./.venv/" |
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"cookiecutter": { | ||
"codeowner_github_usernames": "@glennmatthews @jvanderaa @smk4664 @whitej6", | ||
"full_name": "Network to Code, LLC", | ||
"email": "[email protected]", | ||
"github_org": "nautobot", | ||
"app_name": "nautobot_chatops", | ||
"verbose_name": "Nautobot ChatOps App", | ||
"app_slug": "nautobot-chatops", | ||
"project_slug": "nautobot-app-chatops", | ||
"repo_url": "https://github.com/nautobot/nautobot-app-chatops", | ||
"base_url": "chatops", | ||
"min_nautobot_version": "2.0.0", | ||
"max_nautobot_version": "2.9999", | ||
"camel_name": "NautobotChatOpsApp", | ||
"project_short_description": "Nautobot ChatOps App", | ||
"model_class_name": "None", | ||
"open_source_license": "Apache-2.0", | ||
"docs_base_url": "https://docs.nautobot.com", | ||
"docs_app_url": "https://docs.nautobot.com/projects/chatops/en/latest", | ||
"_drift_manager": { | ||
"template": "https://github.com/nautobot/cookiecutter-nautobot-app.git", | ||
"template_dir": "nautobot-app", | ||
"template_ref": "refs/tags/nautobot-app-v2.2.1", | ||
"cookie_dir": "", | ||
"branch_prefix": "drift-manager", | ||
"pull_request_strategy": "create", | ||
"post_actions": [ | ||
"black" | ||
], | ||
"draft": true, | ||
"baked_commit_ref": "cfd9475f3ea601572d0f3b23d4bb6d9655bc2721" | ||
} | ||
} | ||
} |
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,11 +1,27 @@ | ||
# Docker related | ||
development/Dockerfile | ||
development/docker-compose*.yml | ||
development/*.env | ||
*.env | ||
environments/ | ||
|
||
# Python | ||
**/*.pyc | ||
**/*.pyo | ||
**/*.log | ||
**/__pycache__/ | ||
**/.pytest_cache/ | ||
**/.venv/ | ||
|
||
|
||
# Other | ||
docs/_build | ||
FAQ.md | ||
.git/ | ||
.github/ | ||
.gitignore | ||
Dockerfile | ||
docker-compose.yml | ||
.env | ||
docs/_build | ||
__pycache__/ | ||
.github | ||
tasks.py | ||
LICENSE | ||
**/*.log | ||
**/.vscode/ | ||
invoke*.yml | ||
tasks.py |
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,4 +1,12 @@ | ||
[flake8] | ||
# E501: Line length is enforced by Black, so flake8 doesn't need to check it | ||
# W503: Black disagrees with this rule, as does PEP 8; Black wins | ||
ignore = E501, W503, F811, F401 | ||
ignore = | ||
F401, # Module imported but unused | ||
F811, # Redefinition of unused name from line N | ||
E501, # Line length is enforced by Black, so flake8 doesn't need to check it | ||
W503 # Black disagrees with this rule, as does PEP 8; Black wins | ||
exclude = | ||
migrations, | ||
__pycache__, | ||
manage.py, | ||
settings.py, | ||
.venv |
Validating CODEOWNERS rules …
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,2 +1,9 @@ | ||
# Default owners for all files in this repository | ||
* @glennmatthews @jvanderaa @smk4664 @whitej6 | ||
# Default owner(s) of all files in this repository | ||
* @glennmatthews @smk4664 @whitej6 @romanukes | ||
/nautobot_chatops/integrations/aci/ @pato23arg | ||
/nautobot_chatops/integrations/ansible/ @smk4664 | ||
/nautobot_chatops/integrations/aristacv/ @qduk | ||
/nautobot_chatops/integrations/grafana/ @davidban77 | ||
/nautobot_chatops/integrations/meraki/ @jeffkala | ||
/nautobot_chatops/integrations/ipfabric/ @alhogan @pke11y | ||
/nautobot_chatops/integrations/panorama/ @jdrew82 |
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
Oops, something went wrong.