Skip to content

Commit c85d89d

Browse files
committed
Fix linting
1 parent b146655 commit c85d89d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
deno check src/higlass/widget.js
5555
5656
Schema:
57-
name: JS viewconf validation with generated JSON Schema
57+
name: Check higlass-schema against viewconfs
5858
runs-on: ubuntu-latest
5959
steps:
6060
- uses: actions/checkout@v4
@@ -63,7 +63,7 @@ jobs:
6363
uv run --package higlass-schema higlass-schema export > schema.json
6464
- uses: actions/setup-node@v4
6565
with:
66-
node-version: '20.x'
66+
node-version: "20.x"
6767
- run: npm install -g ajv-cli
6868
- run: ajv validate --spec=draft2020 -s schema.json -d "packages/higlass-schema/tests/fixtures/{docs/examples/viewconfs,test/{view-configs,view-configs-more}}/*.json"
6969

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ and understanding are greatly appreciated.
7070

7171
## Development
7272

73-
**higlass-python** is a uv workspace monorepo that includes the main library
74-
and additional packages (e.g., **higlass-schema**). It's primarily a Python
75-
project, but includes JavaScript for the anywidget-based front-end code
73+
**higlass-python** is a uv workspace monorepo that includes the main library and
74+
additional packages (e.g., **higlass-schema**). It's primarily a Python project,
75+
but includes JavaScript for the anywidget-based front-end code
7676
(`src/higlass/widget.js`). We use [uv](https://github.com/astral-sh/uv) for
7777
Python development and [deno](https://github.com/denoland/deno) for linting and
7878
type-checking JavaScript.

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
}
1111
},
1212
"fmt": {
13-
"exclude": ["examples"]
13+
"exclude": ["examples", "docs", "packages/higlass-schema/tests/fixtures"]
1414
}
1515
}

0 commit comments

Comments
 (0)