File size: 642 Bytes
10be466
b66ebf4
 
10be466
 
 
 
 
 
 
 
 
 
 
b66ebf4
 
 
 
10be466
 
 
 
b82e2a6
004e1f0
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
export const SOL_EXT = ".sol";
export const SOL_TEST_SUFFIXES = [".t.sol", ".test.sol", ".spec.sol"];
export const DOC_EXTS = new Set([".md", ".rst", ".adoc"]);
export const DOC_BASENAMES = new Set(["readme", "whitepaper", "spec", "architecture", "design", "overview", "docs"]);
export const SKIP_DIRS = new Set([
  "node_modules",
  ".git",
  "out",
  "artifacts",
  "cache",
  "lib",
  ".deps",
  "build",
  "dist",
  "test",
  "tests",
  "script",
  "scripts",
]);
export const MAX_DEPTH = 6;
export const MAX_DOC_CHARS = 12_000;
export const MAX_SOL_CHARS = 40_000;
export const MAX_REFLECTIONS = 3;
export const MIN_FILE_IMPORTANCE = 3;