summaryrefslogtreecommitdiffstats
path: root/build/plugins/_dart_fields.py
diff options
context:
space:
mode:
authorionagamed <[email protected]>2025-04-01 20:00:49 +0300
committerionagamed <[email protected]>2025-04-01 20:33:12 +0300
commitab32036303618a64bdef67acf653bc4525afa9fa (patch)
tree86753dec7c151861c1f5b9bbae25151ccebd169a /build/plugins/_dart_fields.py
parent8ae5a10bda4cce251cb1a46198656f9b4cbbc92a (diff)
GRUT: Don't use GRUT_PREFIX_FILES for styling
Мы переехали на ENABLE в своих ya.make commit_hash:400899134a60796a9c1cb219567f858e556f843a
Diffstat (limited to 'build/plugins/_dart_fields.py')
-rw-r--r--build/plugins/_dart_fields.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/build/plugins/_dart_fields.py b/build/plugins/_dart_fields.py
index 9b0db2be393..6344bd001ed 100644
--- a/build/plugins/_dart_fields.py
+++ b/build/plugins/_dart_fields.py
@@ -1131,27 +1131,6 @@ class TestFiles:
# XXX: this is a workaround to support very specific linting settings.
# Do not use it as a general mechanism!
- _GRUT_PREFIX = 'grut'
- _GRUT_INCLUDE_LINTER_TEST_PATHS = (
- 'grut/libs/bigrt/clients',
- 'grut/libs/bigrt/common',
- 'grut/libs/bigrt/data',
- 'grut/libs/bigrt/event_filter',
- 'grut/libs/bigrt/graph',
- 'grut/libs/bigrt/info_keepers',
- 'grut/libs/bigrt/processor',
- 'grut/libs/bigrt/profile',
- 'grut/libs/bigrt/profiles',
- 'grut/libs/bigrt/queue_info_config',
- 'grut/libs/bigrt/resharder/compute_shard_number',
- 'grut/libs/bigrt/server',
- 'grut/libs/bigrt/testlib',
- 'grut/libs/bigrt/transaction',
- 'grut/libs/shooter',
- )
-
- # XXX: this is a workaround to support very specific linting settings.
- # Do not use it as a general mechanism!
_MAPS_RENDERER_PREFIX = 'maps/renderer'
_MAPS_RENDERER_INCLUDE_LINTER_TEST_PATHS = (
'maps/renderer/cartograph',
@@ -1282,12 +1261,6 @@ class TestFiles:
@classmethod
def cpp_linter_files(cls, unit, flat_args, spec_args):
upath = unit.path()[3:]
- if upath.startswith(cls._GRUT_PREFIX):
- for path in cls._GRUT_INCLUDE_LINTER_TEST_PATHS:
- if os.path.commonpath([upath, path]) == path:
- break
- else:
- raise DartValueError()
if upath.startswith(cls._MAPS_RENDERER_PREFIX):
for path in cls._MAPS_RENDERER_INCLUDE_LINTER_TEST_PATHS: