如果我有一个eslint配置文件,该文件扩展了其他几个配置,是否可以在不查看node_modules中所有代码的情况下确定特定规则及其配置的起源是什么?
换句话说,如果我发现自己有def candidate_builder(self):
file = open('GSUCandidates.txt', 'r')
for names in file:
names = names.rstrip()
if 'President' in names:
cbl_layout = self.ids['cs_grid']
cn_label = Label(bold=True, text=names)
cn_button = Button(id='pr', bold=True, text='Vote')
cn_button.on_release = show()
cbl_layout.add_widget(cn_label)
cbl_layout.add_widget(cn_button)
cbl_layout.height = cbl_layout.height + 250
def show():
vp_label = Label(bold=True, text=names)
cpl_layout = self.ids['csp_grid']
cpl_layout.add_widget(vp_label)
并且在配置中扩展了3个规则集,是否可以通过eslint CLI确定哪个规则集定义了该规则?