Skip to content

Commit 0481068

Browse files
authored
Merge pull request #52 from bcdev/forman-add_copyright
Added copyright
2 parents c713b15 + b2df512 commit 0481068

File tree

154 files changed

+620
-4
lines changed

Some content is hidden

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

154 files changed

+620
-4
lines changed

CHANGES.md

Lines changed: 6 additions & 4 deletions

examples/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Copyright © 2025 Brockmann Consult GmbH.
2+
# This software is distributed under the terms and conditions of the
3+
# MIT license (https://mit-license.org/).
4+

examples/check_s3_bucket.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright © 2025 Brockmann Consult GmbH.
2+
# This software is distributed under the terms and conditions of the
3+
# MIT license (https://mit-license.org/).
4+
15
import xrlint.all as xrl
26

37
URL = "s3://xcube-test/"

examples/plugin_config.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
using the `Plugin` class and its `define_rule()` decorator method.
44
"""
55

6+
# Copyright © 2025 Brockmann Consult GmbH.
7+
# This software is distributed under the terms and conditions of the
8+
# MIT license (https://mit-license.org/).
9+
610
from xrlint.node import DatasetNode
711
from xrlint.plugin import new_plugin
812
from xrlint.rule import RuleContext, RuleOp

examples/rule_testing.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
This example demonstrates how to develop new rules.
33
"""
44

5+
# Copyright © 2025 Brockmann Consult GmbH.
6+
# This software is distributed under the terms and conditions of the
7+
# MIT license (https://mit-license.org/).
8+
59
import xarray as xr
610

711
from xrlint.node import DatasetNode

examples/virtual_plugin_config.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
can be defined inside a configuration item.
55
"""
66

7+
# Copyright © 2025 Brockmann Consult GmbH.
8+
# This software is distributed under the terms and conditions of the
9+
# MIT license (https://mit-license.org/).
10+
711
from xrlint.node import DatasetNode
812
from xrlint.rule import RuleContext, RuleOp, define_rule
913

mkruleref.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright © 2025 Brockmann Consult GmbH.
2+
# This software is distributed under the terms and conditions of the
3+
# MIT license (https://mit-license.org/).
4+
15
from xrlint.plugin import Plugin
26
from xrlint.rule import RuleConfig
37

notebooks/mkdataset.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright © 2025 Brockmann Consult GmbH.
2+
# This software is distributed under the terms and conditions of the
3+
# MIT license (https://mit-license.org/).
4+
15
import numpy as np
26
import xarray as xr
37

tests/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Copyright © 2025 Brockmann Consult GmbH.
2+
# This software is distributed under the terms and conditions of the
3+
# MIT license (https://mit-license.org/).
4+

tests/_linter/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Copyright © 2025 Brockmann Consult GmbH.
2+
# This software is distributed under the terms and conditions of the
3+
# MIT license (https://mit-license.org/).
4+

0 commit comments

Comments
 (0)