cci 0.0.1

Control your CI/CD
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CciConfig(
    presets: [
        Python(PythonConfig(
            version: "3.11",
            linter: LinterConfig(
                enabled: true,
                tool: Ruff,
            ),
            formatter: FormatterConfig(
                enabled: true,
                tool: Black,
            ),
            type_check: true,
        )),
    ],
)