MCPcopy Create free account
hub / github.com/FastLED/FastLED / PlatformIOSection

Class PlatformIOSection

ci/compiler/platformio_ini.py:40–69  ·  view source on GitHub ↗

Typed representation of the [platformio] section. Contains generic project settings and directory options.

Source from the content-addressed store, hash-verified

38
39@dataclass
40class PlatformIOSection:
41 """
42 Typed representation of the [platformio] section.
43 Contains generic project settings and directory options.
44 """
45
46 # Generic Options
47 name: Optional[str] = None
48 description: Optional[str] = None
49 default_envs: Optional[list[str]] = None
50 extra_configs: Optional[list[str]] = None
51
52 # Directory Options
53 core_dir: Optional[str] = None
54 globallib_dir: Optional[str] = None
55 platforms_dir: Optional[str] = None
56 packages_dir: Optional[str] = None
57 cache_dir: Optional[str] = None
58 build_cache_dir: Optional[str] = None
59 workspace_dir: Optional[str] = None
60 build_dir: Optional[str] = None
61 libdeps_dir: Optional[str] = None
62 include_dir: Optional[str] = None
63 src_dir: Optional[str] = None
64 lib_dir: Optional[str] = None
65 data_dir: Optional[str] = None
66 test_dir: Optional[str] = None
67 boards_dir: Optional[str] = None
68 monitor_dir: Optional[str] = None
69 shared_dir: Optional[str] = None
70
71
72@dataclass

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected