WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit d9a9a6c

Browse files
committed
Apply prettier
1 parent 063f672 commit d9a9a6c

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

CONTRIBUTING.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,15 +83,20 @@ The documentation is built with [sphinx](https://www.sphinx-doc.org/en/master/)
8383
making use of the [PyData Sphinx theme](https://pydata-sphinx-theme.readthedocs.io/en/stable/index.html).
8484

8585
To build it locally
86+
8687
- create and activate an isolated development environment with the necessary dependencies
87-
with
88+
with
89+
8890
```bash
8991
conda env create -f docs/environment.yml
9092
conda activate lumino_documentation
9193
```
94+
9295
- build, for example the html version, with
96+
9397
```bash
9498
cd docs
9599
make html
96100
```
97-
The HTML pages are then located in the `build/html` directory.
101+
102+
The HTML pages are then located in the `build/html` directory.

packages/datagrid/src/datagrid.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ import { TextRenderer } from './textrenderer';
5252
* the child widgets of a data grid directly is undefined behavior.
5353
*
5454
* This class is not designed to be subclassed.
55-
*
55+
*
5656
* See also the related [example](../../examples/datagrid/index.html) and
5757
* its [source](https://github.com/jupyterlab/lumino/tree/main/examples/example-datagrid).
5858
*/

packages/widgets/src/accordionpanel.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { Widget } from './widget';
1515
*
1616
* #### Notes
1717
* This class provides a convenience wrapper around {@link AccordionLayout}.
18-
*
18+
*
1919
* See also the related [example](../../examples/accordionpanel/index.html) and
2020
* its [source](https://github.com/jupyterlab/lumino/tree/main/examples/example-accordionpanel).
2121
*/
@@ -24,7 +24,7 @@ export class AccordionPanel extends SplitPanel {
2424
* Construct a new accordion panel.
2525
*
2626
* @param options - The options for initializing the accordion panel.
27-
*
27+
*
2828
*/
2929
constructor(options: AccordionPanel.IOptions = {}) {
3030
super({ ...options, layout: Private.createLayout(options) });

packages/widgets/src/dockpanel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import { Widget } from './widget';
3131

3232
/**
3333
* A widget which provides a flexible docking area for widgets.
34-
*
34+
*
3535
* #### Notes
3636
* See also the related [example](../../examples/dockpanel/index.html) and
3737
* its [source](https://github.com/jupyterlab/lumino/tree/main/examples/example-dockpanel).

packages/widgets/src/splitlayout.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -745,7 +745,7 @@ export namespace SplitLayout {
745745
* The orientation of the layout.
746746
*
747747
* Possible values are documented in {@link SplitLayout.Orientation}.
748-
*
748+
*
749749
* The default is `'horizontal'`.
750750
*/
751751
orientation?: Orientation;

0 commit comments

Comments
 (0)