-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
54 lines (46 loc) · 2.12 KB
/
Copy path.gitignore
File metadata and controls
54 lines (46 loc) · 2.12 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
target/
*.class
*.log
.idea/
*.iml
.vscode/
.DS_Store
# JFR recordings: binary, ~10 MB for 10 s of running, unreadable outside JMC, and their
# random content triggers GitHub's secret scanner (a "Grafana token" false positive seen on
# 2026-08-20). The text extracts, for their part, are versioned.
*.jfr
# Licence keys: never in the repository (it is public, and git keeps the history).
# They live outside any git tree — see docs/etude/cles-evaluation.md
*.license
*.key
licence*.sh
license*.sh
.env.local
# Run outputs: this is the tool's DEFAULT output directory, hence the one an analysis
# launched from a clone of the repository lands in. A report carries the class names, the
# line numbers and the PARAMETER VALUES of the analysed code: run on a real application, it
# has no business in a public repository. Ignored so that no `git add -A` can put it there.
# The demonstration runs kept as evidence for the study are in reports-demo/executions/,
# outside this path.
runtime-xray-out/
# Python bytecode from the diagram generators.
__pycache__/
*.pyc
# A local .env holding the credentials of an internal Maven mirror, sourced by the shell or
# the IDE before a build. The tool names such a mirror with --repo / MAVEN_REPO and stores
# nothing itself; what this file holds is the reader's own account. The variants go too:
# ".env.dev" leaks exactly what ".env" leaks.
.env
.env.*
# A Maven repository local to the project — a place this tool knows how to look in
# (MAVEN_REPO_LOCAL). The whole directory, not just repository/: settings.xml is the file
# that carries a mirror's username and password, and this repository is public.
.m2/
# Windows leaves a real file named "nul" behind when a command redirects to it from a
# POSIX-style shell: there the name is a relative path, not the null device. Nothing in
# this repository produces it — it is a stray, never an input.
nul
# The tool writes wherever --out points, so ignoring its default is not enough. This is the
# other conventional name, and it is ignored for the same reason as runtime-xray-out/
# above: a report carries class names, line numbers and captured parameter values.
tmp/