Skip to content

Commit 9613beb

Browse files
committed
fix: linting
and fix warning about incorrect pylint disable name change `too-many-positional-arguments` to `too-many-arguments` Signed-off-by: jmeridth <[email protected]>
1 parent 47b3927 commit 9613beb

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/copilot-instructions.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copilot Instructions
2+
13
This is a GitHub Action that given an organization, team, or specified repositories, opens an issue/PR if dependabot is not enabled, or there are more package ecosystems that could be added. It also enables [automated security updates](https://docs.github.com/en/code-security/dependabot/dependabot-security-updates/configuring-dependabot-security-updates#managing-dependabot-security-updates-for-your-repositories) for the repository. Please follow these guidelines when contributing:
24

35
## Code Standards

.github/linters/.python-lint

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ disable=bad-inline-option,
440440
too-many-branches,
441441
too-many-locals,
442442
too-many-nested-blocks,
443-
too-many-positional-arguments,
443+
too-many-arguments,
444444
too-many-statements,
445445
useless-suppression,
446446
use-symbolic-message-instead,

.github/workflows/copilot-setup-steps.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ jobs:
2222
copilot-setup-steps:
2323
runs-on: ubuntu-latest
2424

25-
2625
# You can define any steps you want, and they will run before the agent starts.
2726
# If you do not check out your code, Copilot will do this for you.
2827
steps:

0 commit comments

Comments
 (0)