Skip to content

Commit

Permalink
Added suppression to kebab case for styles, formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
ericsnekbytes committed Oct 27, 2023
1 parent 9cd09d2 commit d8d90b3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions toparea-text-widget/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
JupyterFrontEndPlugin
} from '@jupyterlab/application';

import { DOMUtils } from "@jupyterlab/apputils";
import { DOMUtils } from '@jupyterlab/apputils';

import { Widget } from '@lumino/widgets';

Expand All @@ -25,7 +25,7 @@ const plugin: JupyterFrontEndPlugin<void> = {
const widget = new Widget({ node });
widget.id = DOMUtils.createDomID();
widget.addClass(TOP_AREA_CSS_CLASS);
app.shell.add(widget, 'top', { rank: 1000 })
app.shell.add(widget, 'top', { rank: 1000 });
}
};

Expand Down
9 changes: 5 additions & 4 deletions toparea-text-widget/style/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
https://jupyterlab.readthedocs.io/en/stable/developer/css.html
*/

/* stylelint-disable selector-class-pattern */
.jp-TopAreaText {
display: flex;
justify-content: center;
align-items: center;
margin-right: 10px;
display: flex;
justify-content: center;
align-items: center;
margin-right: 10px;
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

import { test, expect } from '@jupyterlab/galata';

test('should add a top area text', async ({ page }) => {
Expand Down

0 comments on commit d8d90b3

Please sign in to comment.