Skip to content

Commit 3ecc548

Browse files
authored
Merge branch 'dev' into layout-accept-lists-as-component
2 parents 84536fe + 7ba267b commit 3ecc548

File tree

203 files changed

+27936
-19069
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

203 files changed

+27936
-19069
lines changed

.circleci/config.yml

Lines changed: 151 additions & 127 deletions
Large diffs are not rendered by default.

.editorconfig

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ charset = utf-8
1212
indent_style = space
1313
indent_size = 4
1414

15-
# Matches the exact files either package.json or .travis.yml
15+
# Matches the exact files either package.json or .circleci/config.yml
1616
[{package.json,.circleci/config.yml}]
1717
indent_style = space
1818
indent_size = 2
19+

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# These owners will be the default owners for everything in
22
# the repo. Unless a later match takes precedence
3-
* @alexcjohnson
3+
* @alexcjohnson @T4rk1n @ndrezn @gvwilson @emilykl

.github/workflows/update-html.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: update-html
2+
run-name: Update dash html components attributes
3+
on:
4+
schedule:
5+
- cron: 10 0 1 * *
6+
workflow_dispatch:
7+
inputs:
8+
name:
9+
description: Name of the run
10+
required: false
11+
type: string
12+
13+
jobs:
14+
update-attributes:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v3
18+
with:
19+
ref: dev
20+
- uses: actions/setup-node@v3
21+
- name: Extract elements
22+
working-directory: ./components/dash-html-components
23+
run: |
24+
npm ci
25+
npm run extract
26+
- name: Create Pull Request
27+
uses: peter-evans/create-pull-request@v5
28+
with:
29+
commit-message: Update Dash HTML elements & attributes.
30+
body: Automated HTML attributes update.

.pylintrc

Lines changed: 9 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# A comma-separated list of package or module names from where C extensions may
44
# be loaded. Extensions are loading into the active Python interpreter and may
55
# run arbitrary code
6-
extension-pkg-whitelist=
6+
extension-pkg-allow-list=
77

88
# Add files or directories to the blacklist. They should be base names, not
99
# paths.
@@ -68,7 +68,13 @@ disable=fixme,
6868
superfluous-parens,
6969
bad-continuation,
7070
line-too-long,
71-
bad-option-value
71+
bad-option-value,
72+
use-dict-literal,
73+
missing-timeout,
74+
unnecessary-dunder-call,
75+
unnecessary-lambda-assignment,
76+
broad-exception-raised,
77+
consider-using-generator,
7278

7379

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

237-
# List of optional constructs for which whitespace checking is disabled. `dict-
238-
# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
239-
# `trailing-comma` allows a space between comma and closing bracket: (a, ).
240-
# `empty-line` allows space-only lines.
241-
no-space-check=trailing-comma,
242-
dict-separator
243-
244243
# Allow the body of a class to be on the same line as the declaration if body
245244
# contains single statement.
246245
single-line-class-stmt=no
@@ -415,7 +414,7 @@ max-bool-expr=5
415414
max-branches=15
416415

417416
# Maximum number of locals for function / method body
418-
max-locals=15
417+
max-locals=25
419418

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

468467
# Force import order to recognize a module as part of a third party library.
469468
known-third-party=enchant
470-
471-
472-
[EXCEPTIONS]
473-
474-
# Exceptions that will emit a warning when being caught. Defaults to
475-
# "Exception"
476-
overgeneral-exceptions=Exception

0 commit comments

Comments
 (0)