mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
7 lines
238 B
TypeScript
7 lines
238 B
TypeScript
export const MAX_CYCLOMATIC_COMPLEXITY = 10
|
|
export const MAX_COGNITIVE_COMPLEXITY = 15
|
|
export const MAX_NESTING = 4
|
|
|
|
export const DEFAULT_SRC_DIR = 'src'
|
|
export const IGNORED_DIRECTORIES = ['node_modules', '.next', 'dist', 'build']
|