diff options
| author | alevitskii <[email protected]> | 2025-02-24 09:26:50 +0300 | 
|---|---|---|
| committer | alevitskii <[email protected]> | 2025-02-24 09:45:48 +0300 | 
| commit | 6c1c164f1cdd5981719cfa7eb96eaa2cf1fd6c8b (patch) | |
| tree | 07740e8fa7a37039cfa9aa262a74f5efb5aaf65f | |
| parent | 8144656ef5a6c45f2f2e532690533d0ab348a8cb (diff) | |
Add config validator to ya style
Add config validator to ya style
commit_hash:ab43d981dbc98c3ebca9af6cca5e09af27803f3a
| -rw-r--r-- | build/plugins/lib/test_const/__init__.py | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/build/plugins/lib/test_const/__init__.py b/build/plugins/lib/test_const/__init__.py index 11812d1bf9a..4bf812a04e8 100644 --- a/build/plugins/lib/test_const/__init__.py +++ b/build/plugins/lib/test_const/__init__.py @@ -456,6 +456,14 @@ class DefaultLinterConfig(Enum):      Python = "build/config/tests/py_style/default_configs.json" +# TODO Fill up like +""" +{ +    PythonLinterName.Ruff: "build/config/tests/ruff/rules.yaml", +} +""" +LINTER_TO_VALIDATION_CONFIG = {} +  LINTER_CONFIG_TYPES = {      CppLinterName.ClangFormat: (".clang-format",),      CppLinterName.ClangFormatYT: (".clang-format",),  | 
