Browse Source

Update Lint rules

Andrew Swistak 5 years ago
parent
commit
5a4c524070
1 changed files with 3 additions and 3 deletions
  1. 3 3
      .eslintrc.js

+ 3 - 3
.eslintrc.js

@@ -50,12 +50,12 @@ module.exports = {
     // JavaScript Rules
     'arrow-body-style': ['warn', 'as-needed'],
     'arrow-parens': ['warn', 'as-needed'],
-    'arrow-spacing': 'error',
-    'block-spacing': ['error', 'never'],
+    'arrow-spacing': 'warn',
+    'block-spacing': ['warn', 'never'],
     camelcase: ['error', {properties: 'always'}],
     'comma-dangle': 0,
     'comma-spacing': ['error', {before: false, after: true}],
-    'comma-style': ['error', 'last'],
+    'comma-style': ['warn', 'last'],
     'global-require': 0,
     indent: ['error', 2],
     'key-spacing': ['error', {beforeColon: false, afterColon: true}],