-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstellar.toml
More file actions
98 lines (87 loc) · 1.74 KB
/
Copy pathstellar.toml
File metadata and controls
98 lines (87 loc) · 1.74 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# Dossiers proteges - Stellar refusera d'operer sur ces dossiers
[protected]
# Dossiers systeme
system = [
"/",
"/System",
"/Library",
"/usr",
"/bin",
"/sbin",
"/etc",
"/var",
"/private",
"/Applications"
]
# Dossiers utilisateur sensibles
user = [
".ssh",
".gnupg",
".config",
"Library",
"Applications",
]
# Dossiers de developpement (ignores lors du scan)
dev = [
"node_modules",
".git",
".svn",
"target",
"venv",
".venv",
"__pycache__",
".cargo",
"build",
"dist",
".next",
".nuxt"
]
[categories]
# Documents
Documents = [
"pdf", "doc", "docx", "txt", "md", "odt", "rtf",
"xlsx", "xls", "csv", "ods",
"pptx", "ppt", "odp",
"pages", "numbers", "key"
]
# Images
Images = [
"png", "jpg", "jpeg", "gif", "webp", "bmp", "tiff", "tif",
"svg", "ico", "heic", "heif", "raw", "cr2", "nef", "psd", "ai"
]
# Videos
Videos = [
"mp4", "mkv", "avi", "mov", "wmv", "flv", "webm",
"m4v", "mpeg", "mpg", "3gp"
]
# Audio
Audio = [
"mp3", "wav", "flac", "aac", "ogg", "wma", "m4a",
"aiff", "opus", "mid", "midi"
]
# Archives
Archives = [
"zip", "tar", "gz", "rar", "7z", "bz2", "xz"
]
# Code
Code = [
"rs", "js", "ts", "py", "java", "c", "cpp", "h", "hpp",
"html", "css", "scss", "sass", "less",
"json", "yaml", "yml", "toml", "xml",
"sh", "bash", "zsh", "fish",
"sql", "go", "rb", "php", "swift", "kt", "scala",
"vue", "jsx", "tsx", "svelte"
]
# Executables / Installateurs
Executables = [
"exe", "msi", "app", "apk", "ipa", "bin", "run",
"dmg", "pkg", "deb", "rpm", "iso"
]
# Fonts
Fonts = [
"ttf", "otf", "woff", "woff2", "eot"
]
# Ebooks
Ebooks = [
"epub", "mobi", "azw", "azw3", "fb2", "djvu"
]