We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 963c54a commit dbc4dacCopy full SHA for dbc4dac
azdev/operations/style.py
@@ -104,7 +104,16 @@ def apply_result(item):
104
105
def _run_pylint(modules):
106
107
- cli_paths = list(modules['core'].values()) + list(modules['mod'].values())
+ def get_core_module_paths(modules):
108
+ core_paths = []
109
+ for p in modules['core'].values():
110
+ _, tail = os.path.split(p)
111
+ for x in str(tail).split('-'):
112
+ p = os.path.join(p, x)
113
+ core_paths.append(p)
114
+ return core_paths
115
+
116
+ cli_paths = get_core_module_paths(modules) + list(modules['mod'].values())
117
118
ext_paths = []
119
for path in list(modules['ext'].values()):
0 commit comments