scai 0.1.25 β 0.1.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/config/IgnoredExtensions.js +38 -22
- package/package.json +1 -1
|
@@ -1,52 +1,68 @@
|
|
|
1
1
|
export const IGNORED_EXTENSIONS = [
|
|
2
|
-
//
|
|
2
|
+
// Media
|
|
3
3
|
'.png', '.jpg', '.jpeg', '.gif', '.webp', '.svg', '.ico',
|
|
4
4
|
'.mp4', '.mp3', '.mov', '.avi', '.mkv', '.flv', '.wav', '.flac',
|
|
5
5
|
'.aac', '.m4a', '.wma', '.3gp', '.webm', '.ogg', '.aiff', '.au',
|
|
6
|
-
//
|
|
6
|
+
// Archives & install packages
|
|
7
7
|
'.zip', '.tar', '.gz', '.bz2', '.xz', '.rar', '.7z',
|
|
8
8
|
'.jar', '.war', '.ear', '.deb', '.rpm', '.pkg', '.msi', '.dmg', '.cab', '.apk',
|
|
9
9
|
'.tar.gz', '.tar.bz2', '.tar.xz', '.tar.lzma', '.tar.zst',
|
|
10
|
-
//
|
|
10
|
+
// Binaries & executables
|
|
11
11
|
'.exe', '.dll', '.bin', '.so', '.dylib', '.a', '.lib',
|
|
12
12
|
'.iso', '.img', '.elf', '.o', '.obj', '.msm', '.vbs', '.jscript',
|
|
13
13
|
'.cmd', '.bat', '.ps1', '.sh', '.bash', '.run',
|
|
14
|
-
//
|
|
14
|
+
// Runtime / build / cache
|
|
15
15
|
'.log', '.tmp', '.map',
|
|
16
16
|
'.db', '.sqlite', '.pkl', '.sav', '.rdb', '.ldb',
|
|
17
17
|
'.pyc', '.class', '.tsbuildinfo', '.coverage', '.eslintcache',
|
|
18
18
|
'.yarn', '.webpack', '.babel', '.compilercache',
|
|
19
|
-
//
|
|
19
|
+
// Fonts & styles
|
|
20
20
|
'.woff', '.woff2', '.ttf', '.eot', '.otf', '.css.map',
|
|
21
21
|
'.scss', '.sass', '.less', '.styl',
|
|
22
|
-
//
|
|
22
|
+
// Certs, keys, credentials
|
|
23
23
|
'.crt', '.key', '.pem', '.pub', '.asc', '.gpg', '.p12', '.csr', '.der', '.pfx',
|
|
24
|
-
//
|
|
24
|
+
// Backups / temp
|
|
25
25
|
'.bak', '.old', '.swp', '.swo', '.orig',
|
|
26
26
|
'.sublime-workspace', '.sublime-project', '.db-shm', '.db-wal',
|
|
27
|
-
//
|
|
27
|
+
// System/config folders (still ignored by path, not extension)
|
|
28
28
|
'.DS_Store', '.bundle', '.npmrc',
|
|
29
|
-
//
|
|
29
|
+
// GIS / Geospatial
|
|
30
30
|
'.shp', '.shx', '.dbf', '.prj', '.qix', '.sbn', '.sbx', '.shp.xml', '.cpg', '.gpkg', '.mif', '.mid',
|
|
31
|
-
//
|
|
31
|
+
// Enterprise BI / Reporting
|
|
32
32
|
'.pbix', '.rdl', '.rpt', '.bqy', '.iqy',
|
|
33
|
-
//
|
|
33
|
+
// ETL / DWH / Modeling
|
|
34
34
|
'.abf', '.dtsx', '.bim', '.xmi',
|
|
35
|
-
//
|
|
35
|
+
// CAD / Engineering
|
|
36
36
|
'.dwg', '.dxf', '.step', '.stp', '.sldprt', '.sldasm',
|
|
37
37
|
'.iges', '.igs', '.3ds', '.fbx',
|
|
38
|
-
//
|
|
38
|
+
// Forms / Print / Publishing
|
|
39
39
|
'.xps', '.afpub', '.pub', '.indd', '.qxd', '.frm', '.frx', '.frl',
|
|
40
|
-
//
|
|
40
|
+
// ERP / Finance / Legacy DB
|
|
41
41
|
'.mbd', '.fdb', '.nav', '.accdb', '.mdb', '.gdb',
|
|
42
42
|
'.sap', '.sappkg', '.qbw', '.qbb',
|
|
43
|
-
//
|
|
43
|
+
// Lock files (but NOT lock *configs*)
|
|
44
44
|
'.lck', '.lockfile', '.db-lock', '.pid', '.socket',
|
|
45
|
-
//
|
|
46
|
-
'.
|
|
47
|
-
'.
|
|
48
|
-
'.
|
|
49
|
-
|
|
50
|
-
'.
|
|
51
|
-
'.
|
|
45
|
+
// Documentation and Readme Files
|
|
46
|
+
'.md', // Markdown files for documentation
|
|
47
|
+
'.rst', // reStructuredText files for documentation
|
|
48
|
+
'.txt', // Plain text files (can be used for documentation or notes)
|
|
49
|
+
// Configuration files (JSON/YAML/XML)
|
|
50
|
+
'.json', // General JSON config files
|
|
51
|
+
'.yaml', // YAML configuration files
|
|
52
|
+
'.yml', // YAML configuration files
|
|
53
|
+
'.xml', // XML configuration files
|
|
54
|
+
// Miscellaneous Important Files
|
|
55
|
+
'.properties', // Java properties files (configuration)
|
|
56
|
+
'.xml.bck', // Backup XML files
|
|
57
|
+
'.bak', // General backup files
|
|
58
|
+
'.swp', // Swap files (e.g., vim/sublime temp files)
|
|
59
|
+
'.swo', // Swap files
|
|
60
|
+
'.orig', // Original backup files
|
|
61
|
+
'.old', // Old version files
|
|
62
|
+
'.~', // Temp files generated by some editors (e.g., vim)
|
|
63
|
+
'.md5', // MD5 checksums
|
|
64
|
+
'.sha1', // SHA1 checksums
|
|
65
|
+
'.sha256', // SHA256 checksums
|
|
66
|
+
'.tmp', // Temporary files
|
|
67
|
+
'.bak', // Backup file (for various applications)
|
|
52
68
|
];
|