Commit 15b800af authored by Philipp Wolfer's avatar Philipp Wolfer

Fixed angularjs check to be disabled by default.

parent b69f57fe
...@@ -44,12 +44,12 @@ class AngularJSInterpolationCheck(TargetCheck): ...@@ -44,12 +44,12 @@ class AngularJSInterpolationCheck(TargetCheck):
check_id = 'angularjs_format' check_id = 'angularjs_format'
name = _('AngularJS interpolation string') name = _('AngularJS interpolation string')
description = _('AngularJS interpolation strings do not match source') description = _('AngularJS interpolation strings do not match source')
default_disabled = True
severity = 'danger' severity = 'danger'
flag = 'angularjs-format'
def check_single(self, source, target, unit, cache_slot): def check_single(self, source, target, unit, cache_slot):
# Verify unit is properly flagged # Verify unit is properly flagged
if self.flag not in unit.all_flags: if self.enable_string not in unit.all_flags:
return False return False
# Try geting source parsing from cache # Try geting source parsing from cache
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment