Commit a0b16df5 authored by anilreddykatta's avatar anilreddykatta Committed by Joe Haddad
Browse files

Relax label rules (#1989)

parent 0b9c65f2
3 merge requests!12191Lim.Pisey.168:/Identified - We are currently investigating reports of missing build logs. The issue has been identified and a resolution is in progress. We will provide a further update when available.Mar 21, 09:02 UTC,!12853brikk,!5717Automatically extract project file structure from build bundle file
Showing with 2 additions and 2 deletions
+2 -2
...@@ -83,7 +83,7 @@ module.exports = { ...@@ -83,7 +83,7 @@ module.exports = {
'no-invalid-regexp': 'warn', 'no-invalid-regexp': 'warn',
'no-iterator': 'warn', 'no-iterator': 'warn',
'no-label-var': 'warn', 'no-label-var': 'warn',
'no-labels': ['warn', { allowLoop: false, allowSwitch: false }], 'no-labels': ['warn', { allowLoop: true, allowSwitch: false }],
'no-lone-blocks': 'warn', 'no-lone-blocks': 'warn',
'no-loop-func': 'warn', 'no-loop-func': 'warn',
'no-mixed-operators': [ 'no-mixed-operators': [
...@@ -110,7 +110,7 @@ module.exports = { ...@@ -110,7 +110,7 @@ module.exports = {
'no-octal-escape': 'warn', 'no-octal-escape': 'warn',
'no-redeclare': 'warn', 'no-redeclare': 'warn',
'no-regex-spaces': 'warn', 'no-regex-spaces': 'warn',
'no-restricted-syntax': ['warn', 'LabeledStatement', 'WithStatement'], 'no-restricted-syntax': ['warn', 'WithStatement'],
'no-script-url': 'warn', 'no-script-url': 'warn',
'no-self-assign': 'warn', 'no-self-assign': 'warn',
'no-self-compare': 'warn', 'no-self-compare': 'warn',
......
Supports Markdown
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