-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy path.ort.yml
More file actions
54 lines (49 loc) · 1.58 KB
/
Copy path.ort.yml
File metadata and controls
54 lines (49 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# SPDX-License-Identifier: BSD-3-Clause
# SPDX-FileCopyrightText: 2026 Erlang Ecosystem Foundation
excludes:
scopes:
- pattern: "excluded"
reason: "DEV_DEPENDENCY_OF"
comment: "Development dependencies not included in production builds"
paths:
# CI/CD and build configuration
- pattern: ".github/**"
reason: "BUILD_TOOL_OF"
comment: "GitHub Actions workflows and configuration"
- pattern: "devenv.*"
reason: "BUILD_TOOL_OF"
comment: "Devenv configuration"
- pattern: ".envrc"
reason: "BUILD_TOOL_OF"
comment: "Direnv configuration"
- pattern: ".tool-versions"
reason: "BUILD_TOOL_OF"
comment: "asdf version manager configuration"
# Documentation
- pattern: "README.md"
reason: "DOCUMENTATION_OF"
comment: "Project readme"
# Tests
- pattern: "test/**"
reason: "TEST_OF"
comment: "Test files"
- pattern: "coveralls.json*"
reason: "TEST_TOOL_OF"
comment: "Coverage configuration"
- pattern: "config/**"
reason: "BUILD_TOOL_OF"
comment: "Test Application configuration"
# Static analysis configuration
- pattern: ".credo.exs"
reason: "BUILD_TOOL_OF"
comment: "Credo linter configuration"
- pattern: ".dialyzer_ignore.exs"
reason: "BUILD_TOOL_OF"
comment: "Dialyzer ignore configuration"
- pattern: ".formatter.exs"
reason: "BUILD_TOOL_OF"
comment: "Elixir formatter configuration"
# License metadata files
- pattern: "REUSE.toml"
reason: "DOCUMENTATION_OF"
comment: "REUSE configuration"