Skip to content

Commit 3be0101

Browse files
authored
chore: REUSE compliance (#94)
1 parent e642218 commit 3be0101

25 files changed

+127
-37
lines changed

.check.exs

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
1-
[
2-
## all available options with default values (see `mix check` docs for description)
3-
# parallel: true,
4-
# skipped: true,
1+
# SPDX-FileCopyrightText: 2020 Zach Daniel
2+
#
3+
# SPDX-License-Identifier: MIT
54

6-
## list of tools (see `mix check` docs for defaults)
5+
[
76
tools: [
8-
## curated tools may be disabled (e.g. the check for compilation warnings)
9-
# {:compiler, false},
10-
11-
## ...or adjusted (e.g. use one-line formatter for more compact credo output)
12-
# {:credo, "mix credo --format oneline"},
13-
{:doctor, false}
7+
{:doctor, false},
8+
{:reuse, command: ["pipx", "run", "reuse", "lint", "-q"]}
149
]
1510
]

.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
#

.doctor.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
%Doctor.Config{
26
ignore_modules: [ ],
37
ignore_paths: [],

.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
# Used by "mix format"
26
[
37
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"]

.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/ci.yml

Lines changed: 5 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: Ash CI
26
on:
37
push:
@@ -12,5 +16,6 @@ jobs:
1216
with:
1317
spark-formatter: false
1418
spark-cheat-sheets: false
19+
reuse: true
1520
secrets:
1621
HEX_API_KEY: ${{ secrets.HEX_API_KEY }}

.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 26.0.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)