[go: nahoru, domu]

Skip to content

Commit

Permalink
Merge pull request #2774 from plotly/master-2.16.0
Browse files Browse the repository at this point in the history
Master 2.16.0
  • Loading branch information
T4rk1n committed Mar 1, 2024
2 parents 115aa4e + 25ec17e commit add7112
Show file tree
Hide file tree
Showing 103 changed files with 6,193 additions and 2,611 deletions.
231 changes: 121 additions & 110 deletions .circleci/config.yml

Large diffs are not rendered by default.

26 changes: 9 additions & 17 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# A comma-separated list of package or module names from where C extensions may
# be loaded. Extensions are loading into the active Python interpreter and may
# run arbitrary code
extension-pkg-whitelist=
extension-pkg-allow-list=

# Add files or directories to the blacklist. They should be base names, not
# paths.
Expand Down Expand Up @@ -68,7 +68,13 @@ disable=fixme,
superfluous-parens,
bad-continuation,
line-too-long,
bad-option-value
bad-option-value,
use-dict-literal,
missing-timeout,
unnecessary-dunder-call,
unnecessary-lambda-assignment,
broad-exception-raised,
consider-using-generator,


# Enable the message, report, category or checker with the given id(s). You can
Expand Down Expand Up @@ -234,13 +240,6 @@ indent-string=' '
# Maximum number of lines in a module
max-module-lines=1000

# List of optional constructs for which whitespace checking is disabled. `dict-
# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
# `trailing-comma` allows a space between comma and closing bracket: (a, ).
# `empty-line` allows space-only lines.
no-space-check=trailing-comma,
dict-separator

# Allow the body of a class to be on the same line as the declaration if body
# contains single statement.
single-line-class-stmt=no
Expand Down Expand Up @@ -415,7 +414,7 @@ max-bool-expr=5
max-branches=15

# Maximum number of locals for function / method body
max-locals=15
max-locals=20

# Maximum number of parents for a class (see R0901).
max-parents=7
Expand Down Expand Up @@ -467,10 +466,3 @@ known-standard-library=

# Force import order to recognize a module as part of a third party library.
known-third-party=enchant


[EXCEPTIONS]

# Exceptions that will emit a warning when being caught. Defaults to
# "Exception"
overgeneral-exceptions=Exception
Loading

0 comments on commit add7112

Please sign in to comment.