Skip to content

Commit 9da8e8b

Browse files
committed
chore: REUSE compliance
1 parent 4d5dda6 commit 9da8e8b

File tree

1,021 files changed

+3402
-12
lines changed

Some content is hidden

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

1,021 files changed

+3402
-12
lines changed

.check.exs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2020 Zach Daniel
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
[
26
## all available options with default values (see `mix check` docs for description)
37
# parallel: true,
@@ -9,7 +13,8 @@
913
# {:compiler, false},
1014
{:npm_test, false},
1115
{:gettext, false},
12-
{:check_formatter, command: "mix spark.formatter --check"}
16+
{:check_formatter, command: "mix spark.formatter --check"},
17+
{:reuse, command: ["pipx", "run", "reuse", "lint", "-q"]}
1318

1419
## ...or adjusted (e.g. use one-line formatter for more compact credo output)
1520
# {:credo, "mix credo --format oneline"},

.credo.exs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2020 Zach Daniel
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
# This file contains the configuration for Credo and you are probably reading
26
# this after creating it with `mix credo.gen.config`.
37
#

.formatter.exs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2020 Zach Daniel
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
spark_locals_without_parens = [
26
accepted_extensions: 1,
37
actor?: 1,

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2020 Zach Daniel
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
---
26
updates:
37
- directory: /

.github/workflows/elixir.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2020 Zach Daniel
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
name: CI
26

37
on:

.github/workflows/reuse.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# SPDX-FileCopyrightText: 2020 Free Software Foundation Europe e.V.
2+
# SPDX-License-Identifier: CC0-1.0
3+
name: REUSE Compliance Check
4+
5+
on: [push, pull_request]
6+
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- name: REUSE Compliance Check
13+
uses: fsfe/reuse-action@v4

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2020 Zach Daniel
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
# The directory Mix will write compiled artifacts to.
26
/_build/
37

.tool-versions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
erlang 27.1.2
22
elixir 1.18.4
3+
pipx 1.8.0

.tool-versions.license

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
SPDX-FileCopyrightText: 2020 Zach Daniel
2+
3+
SPDX-License-Identifier: MIT

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
<!--
2+
SPDX-FileCopyrightText: 2020 Zach Daniel
3+
4+
SPDX-License-Identifier: MIT
5+
-->
6+
17
# Change Log
28

39
All notable changes to this project will be documented in this file.

0 commit comments

Comments
 (0)