41 lines
831 B
Python
41 lines
831 B
Python
"""
|
|
DSS Code Analysis Module.
|
|
|
|
Provides tools for analyzing React projects, detecting style patterns,
|
|
building dependency graphs, and identifying quick-win improvements.
|
|
"""
|
|
|
|
from .base import (
|
|
ComponentInfo,
|
|
Location,
|
|
ProjectAnalysis,
|
|
QuickWin,
|
|
QuickWinPriority,
|
|
QuickWinType,
|
|
StyleFile,
|
|
StylePattern,
|
|
)
|
|
from .graph import DependencyGraph
|
|
from .quick_wins import QuickWinFinder
|
|
from .react import ReactAnalyzer
|
|
from .scanner import ProjectScanner
|
|
from .styles import StyleAnalyzer
|
|
|
|
__all__ = [
|
|
# Data classes
|
|
"ProjectAnalysis",
|
|
"StylePattern",
|
|
"QuickWin",
|
|
"QuickWinType",
|
|
"QuickWinPriority",
|
|
"Location",
|
|
"ComponentInfo",
|
|
"StyleFile",
|
|
# Analyzers
|
|
"ProjectScanner",
|
|
"ReactAnalyzer",
|
|
"StyleAnalyzer",
|
|
"DependencyGraph",
|
|
"QuickWinFinder",
|
|
]
|