Skip to content

Commit eec1384

Browse files
authored
Merge branch 'main' into docs/simplify-install-guide
2 parents d65471f + ecb0994 commit eec1384

File tree

6 files changed

+17
-12
lines changed

6 files changed

+17
-12
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ repos:
2525
# sub-packages, which confuses pre-commit when it tries to find the latest
2626
# version
2727
- repo: https://github.com/adhtruong/mirrors-typos
28-
rev: v1.39.0
28+
rev: v1.39.2
2929
hooks:
3030
- id: typos

docs/guide/check.qmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: "Checking a Data Package's metadata"
3+
description: "A brief walkthrough on how you can use the `check()` function to confirm that the metadata in your `datapackage.json` file complies with the Data Package standard."
34
jupyter: python3
45
order: 1
56
---

docs/guide/config.qmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: "Configuring the checks"
3+
description: "A simple introduction to customising the types of checks that are done against your `datapackage.json` by using the `Config` class, such as excluding certain checks or adding your own."
34
jupyter: python3
45
order: 3
56
---

docs/guide/index.qmd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ description: "A guide on using `check-datapackage` to check the compliance of yo
44
listing:
55
contents: .
66
type: grid
7+
grid-columns: 1
78
sort: "order"
89
fields:
910
- title
11+
- description
1012
---

docs/guide/issues.qmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: "Understanding issues"
3+
description: "A short description about the `Issue` class that contains any problems found in your metadata when using `check()` on a `datapackage.json` file."
34
jupyter: python3
45
order: 2
56
---

docs/index.qmd

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,24 @@ specification](https://datapackage.org/standard/data-package/).
1111

1212
## Why use it?
1313

14-
[Frictionless Data](https://frictionlessdata.io), who initially
15-
started and developed the Data Package specification, has several tools
16-
(listed on the [Frictionless](https://frictionlessdata.io/universe/) and
17-
[Data Package](https://datapackage.org/overview/software/) websites) for
14+
[Frictionless Data](https://frictionlessdata.io), who initially started
15+
and developed the Data Package specification, has several tools (listed
16+
on the [Frictionless](https://frictionlessdata.io/universe/) and [Data
17+
Package](https://datapackage.org/overview/software/) websites) for
1818
working with Data Packages, including a Python package called
1919
[`frictionless`](https://pypi.org/project/frictionless/). However, the
2020
`frictionless` package is a large package that does many things, and it
2121
can be difficult to navigate the documentation and interface to find and
2222
use the specific functionality you need. It also still implements Data
2323
Package version 1, while the latest is version 2.
2424

25-
Since we found ourselves missing a tool we needed for our project, the
26-
[Seedcase Project](https://github.com/seedcase-project), we decided to
27-
build this package. We wanted a small, well-designed, and easy-to-use
28-
package that only checks the compliance of a Data Package against the
29-
current standard. We designed it for future CLI support, for instance
30-
using it in a [pre-commit](https://pre-commit.com/) hook or in CI
31-
pipelines like [GitHub Actions](https://docs.github.com/en/actions).
25+
Since we found ourselves missing a tool we needed for our [Seedcase
26+
Project](https://github.com/seedcase-project), we decided to build this
27+
package. We wanted a small, well-designed, and easy-to-use package that
28+
only checks the compliance of a Data Package against the current
29+
standard. We designed it for future CLI support, for instance using it
30+
in a [pre-commit](https://pre-commit.com/) hook or in CI pipelines like
31+
[GitHub Actions](https://docs.github.com/en/actions).
3232

3333
## Learning more
3434

0 commit comments

Comments
 (0)