src/eric7/Plugins/PluginSyntaxChecker.py

branch
eric7
changeset 9924
b41c9a7bcbbb
parent 9653
e67609152c5e
child 9925
a267ac36dd69
equal deleted inserted replaced
9923:f706be800097 9924:b41c9a7bcbbb
153 153
154 @return state of checkFlakes and ignoreStarImportWarnings (bool, bool) 154 @return state of checkFlakes and ignoreStarImportWarnings (bool, bool)
155 """ 155 """
156 checkFlakes = Preferences.getFlakes("IncludeInSyntaxCheck") 156 checkFlakes = Preferences.getFlakes("IncludeInSyntaxCheck")
157 ignoreStarImportWarnings = Preferences.getFlakes("IgnoreStarImportWarnings") 157 ignoreStarImportWarnings = Preferences.getFlakes("IgnoreStarImportWarnings")
158 return checkFlakes, ignoreStarImportWarnings 158 additionalBuiltins = Preferences.getFlakes("AdditionalBuiltins")
159 return checkFlakes, ignoreStarImportWarnings, additionalBuiltins
159 160
160 def __translateSyntaxCheck(self, fn, problems): 161 def __translateSyntaxCheck(self, fn, problems):
161 """ 162 """
162 Private slot to translate the resulting messages. 163 Private slot to translate the resulting messages.
163 164

eric ide

mercurial