Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
ac7c673
Update
bebound Feb 6, 2023
44c36ee
Minor fix
bebound Feb 6, 2023
d4070e8
Enable no_self_use
bebound Feb 6, 2023
1928f29
Minor fix
bebound Feb 6, 2023
c60042d
Minor fix
bebound Feb 6, 2023
3a22e88
Minor fix
bebound Feb 6, 2023
87cb41c
Minor fix
bebound Feb 6, 2023
2fd99af
Fix flake8
bebound Feb 6, 2023
998a0bc
Update setup.py
dciborow Mar 10, 2023
4cd84e7
Update cli_pylintrc
dciborow Mar 10, 2023
7a2c4fe
Update ext_pylintrc
dciborow Mar 10, 2023
a4bb458
Merge branch 'dev' into dciborow/pylint
dciborow Mar 10, 2023
0fa543d
Merge branch 'dev' into dciborow/pylint
dciborow May 23, 2023
a071b95
Update .pylintrc
dciborow May 24, 2023
1028936
Apply suggestions from code review
dciborow May 24, 2023
d207de8
Update setup.py
dciborow May 24, 2023
23cb1db
Update azdev/operations/testtool/tests/test_profile_context.py
dciborow May 24, 2023
ec84363
Apply suggestions from code review
dciborow May 24, 2023
513539f
Update ext_pylintrc
dciborow May 24, 2023
664c6c8
Update cli_pylintrc
dciborow May 24, 2023
074f8aa
Update .pylintrc
dciborow May 24, 2023
510f0c1
Apply suggestions from code review
dciborow May 24, 2023
f07822b
Update azdev/operations/help/__init__.py
bebound Jun 30, 2023
a4623ce
Update setup.py
bebound Jun 30, 2023
ae28381
Merge branch 'dev' into dciborow/pylint
bebound Jun 30, 2023
53f9b3d
Ignore missing-timeout
bebound Jun 30, 2023
4d2e2a5
Merge branch 'dev' into dciborow/pylint
bebound Jul 11, 2023
0e60fba
Minor fix
bebound Jul 12, 2023
f80f150
Enable deprecated-module
bebound Jul 12, 2023
08e6383
Remove useless config
bebound Jul 13, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Minor fix
  • Loading branch information
bebound committed Jul 12, 2023
commit 0e60fba353c02333c6ea1f5ccb9d3d8976c28781
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ disable=
too-many-arguments,
consider-using-f-string,
unspecified-encoding,
# These rules were added in Pylint >= 2.12 and are disabled to avoid making retroactively required
# These rules were added in Pylint >= 2.12, disable them to avoid making retroactive change
broad-exception-raised,
deprecated-module,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

deprecated-module is quite useful and there is a few errors.
I prefer to enable it by default.

missing-timeout
Expand Down
2 changes: 1 addition & 1 deletion azdev/config/cli_pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ disable=
useless-suppression,
import-outside-toplevel,
wrong-import-order,
# These rules were added in Pylint >= 2.12 and are disabled to avoid making retroactively required
# These rules were added in Pylint >= 2.12, disable them to avoid making retroactive change
broad-exception-raised,
deprecated-module,
missing-timeout
Expand Down
2 changes: 1 addition & 1 deletion azdev/config/ext_pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ disable=
invalid-name,
duplicate-code,
import-outside-toplevel,
# These rules were added in Pylint >= 2.12 and are disabled to avoid making retroactively required
# These rules were added in Pylint >= 2.12, disable them to avoid making retroactive change
broad-exception-raised,
deprecated-module,
missing-timeout
Expand Down