-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrsfe.conf.example
More file actions
41 lines (31 loc) · 815 Bytes
/
rsfe.conf.example
File metadata and controls
41 lines (31 loc) · 815 Bytes
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
# rsfe.conf - Rust Source File Encoding Configuration
# Formato: <pattern> <encoding>
# Encodings suportados: UTF-8, UTF-16LE, UTF-16BE, ISO-8859-1, WINDOWS-1252, AUTO
# Configuração padrão para todos os arquivos (se não houver match específico)
** UTF-8
# Arquivos JavaScript/TypeScript
**/*.js UTF-8
**/*.ts UTF-8
**/*.jsx UTF-8
**/*.tsx UTF-8
# Arquivos Python
**/*.py UTF-8
# Arquivos Rust
**/*.rs UTF-8
# Arquivos de configuração
**/*.json UTF-8
**/*.yaml UTF-8
**/*.yml UTF-8
**/*.toml UTF-8
# Arquivos HTML/CSS
**/*.html UTF-8
**/*.css UTF-8
**/*.scss UTF-8
# Arquivos Markdown
**/*.md UTF-8
# Detecção automática para arquivos legados
legacy/** AUTO
# Arquivos Windows antigos (exemplo)
# old-data/**/*.txt WINDOWS-1252
# Arquivos com encoding específico ISO
# data/**/*.csv ISO-8859-1