diff --git a/CHANGELOG b/CHANGELOG index 8694396..6f98ee4 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +2.5.1 + - Update line length to 200 + - Remove 'strict' rule for modules 2.5.0 - Add an ES6 and JSX standard with lint rules. 2.4.4 diff --git a/es6/mobify-es6.yml b/es6/mobify-es6.yml index 5dd3688..b1bbabe 100644 --- a/es6/mobify-es6.yml +++ b/es6/mobify-es6.yml @@ -18,6 +18,7 @@ rules: # Avoid possible import problems: import/no-extraneous-dependencies: error import/no-duplicates: error + import/no-unresolved: 'off' no-duplicate-imports: error # Stick with ES6 module syntax @@ -143,7 +144,7 @@ rules: - max: 5 max-len: - error - - code: 100 + - code: 200 max-nested-callbacks: - error - max: 3 @@ -188,7 +189,6 @@ rules: space-infix-ops: error space-unary-ops: error spaced-comment: error - strict: error template-curly-spacing: error unicode-bom: - error