Skip to content

Commit ed99569

Browse files
author
Lyle Shearer
authored
Merge pull request #39 from hudl/PLANETX-MigrateProjectsToNexus
Update npm registry URLs
2 parents 532776d + 1a78571 commit ed99569

File tree

4 files changed

+66
-15
lines changed

4 files changed

+66
-15
lines changed

packages/eslint-config-hudl/.npmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
registry=http://npm.thorhudl.com
1+
registry=http://npm-pull.hudltools.com

packages/eslint-config-hudl/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 5.0.1
2+
- Update references to http://npm.thorhudl.com to reference new Nexus server.
3+
14
5.0.0 / 2017-02-14 (Hudl)
25
==================
36
- [breaking] Updated eslint-config-hudl dependencies

packages/eslint-config-hudl/docs/comparisons/with-airbnb-master.md

Lines changed: 60 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ should be added to the list in [the diff task](../../tasks/docs/diffs/diffs-to-r
8181
- ecmaFeatures.jsx
8282
- [<ins>true</ins>]
8383
- parser
84-
- [<del>&quot;babel-eslint&quot;</del>]
84+
- [&quot;babel-eslint&quot;]
8585
- plugins.0
8686
- [&quot;react&quot;]
8787
- [&quot;import&quot;]
@@ -98,9 +98,15 @@ should be added to the list in [the diff task](../../tasks/docs/diffs/diffs-to-r
9898

9999

100100
#### Added rules
101+
-
102+
[array-bracket-newline](http://eslint.org/docs/rules/array-bracket-newline.html)
103+
- [<ins>&quot;off&quot;</ins>, <ins>{&quot;multiline&quot;:true,&quot;minItems&quot;:3}</ins>]
101104
-
102105
[array-callback-return](http://eslint.org/docs/rules/array-callback-return.html)
103106
- [<ins>&quot;error&quot;</ins>]
107+
-
108+
[array-element-newline](http://eslint.org/docs/rules/array-element-newline.html)
109+
- [<ins>&quot;off&quot;</ins>, <ins>{&quot;multiline&quot;:true,&quot;minItems&quot;:3}</ins>]
104110
-
105111
[block-spacing](http://eslint.org/docs/rules/block-spacing.html)
106112
- [<ins>&quot;error&quot;</ins>, <ins>&quot;always&quot;</ins>]
@@ -110,12 +116,18 @@ should be added to the list in [the diff task](../../tasks/docs/diffs/diffs-to-r
110116
-
111117
[class-methods-use-this](http://eslint.org/docs/rules/class-methods-use-this.html)
112118
- [<ins>&quot;error&quot;</ins>, <ins>{&quot;exceptMethods&quot;:[&quot;render&quot;,&quot;getInitialState&quot;,&quot;getDefaultProps&quot;,&quot;getChildContext&quot;,&quot;componentWillMount&quot;,&quot;componentDidMount&quot;,&quot;componentWillReceiveProps&quot;,&quot;shouldComponentUpdate&quot;,&quot;componentWillUpdate&quot;,&quot;componentDidUpdate&quot;,&quot;componentWillUnmount&quot;]}</ins>]
119+
-
120+
[for-direction](http://eslint.org/docs/rules/for-direction.html)
121+
- [<ins>&quot;off&quot;</ins>]
113122
-
114123
[func-call-spacing](http://eslint.org/docs/rules/func-call-spacing.html)
115124
- [<ins>&quot;error&quot;</ins>, <ins>&quot;never&quot;</ins>]
116125
-
117126
[func-name-matching](http://eslint.org/docs/rules/func-name-matching.html)
118127
- [<ins>&quot;off&quot;</ins>, <ins>&quot;always&quot;</ins>, <ins>{&quot;includeCommonJSModuleExports&quot;:false}</ins>]
128+
-
129+
[getter-return](http://eslint.org/docs/rules/getter-return.html)
130+
- [<ins>&quot;off&quot;</ins>, <ins>{&quot;allowImplicit&quot;:true}</ins>]
119131
-
120132
[global-require](http://eslint.org/docs/rules/global-require.html)
121133
- [<ins>&quot;error&quot;</ins>]
@@ -144,6 +156,8 @@ should be added to the list in [the diff task](../../tasks/docs/diffs/diffs-to-r
144156
- [<ins>&quot;error&quot;</ins>]
145157
- import/no-amd
146158
- [<ins>&quot;error&quot;</ins>]
159+
- import/no-anonymous-default-export
160+
- [<ins>&quot;off&quot;</ins>, <ins>{&quot;allowArray&quot;:false,&quot;allowArrowFunction&quot;:false,&quot;allowAnonymousClass&quot;:false,&quot;allowAnonymousFunction&quot;:false,&quot;allowLiteral&quot;:false,&quot;allowObject&quot;:false}</ins>]
147161
- import/no-commonjs
148162
- [<ins>&quot;off&quot;</ins>]
149163
- import/no-deprecated
@@ -153,7 +167,7 @@ should be added to the list in [the diff task](../../tasks/docs/diffs/diffs-to-r
153167
- import/no-dynamic-require
154168
- [<ins>&quot;error&quot;</ins>]
155169
- import/no-extraneous-dependencies
156-
- [<ins>&quot;error&quot;</ins>, <ins>{&quot;devDependencies&quot;:[&quot;test/**&quot;,&quot;tests/**&quot;,&quot;spec/**&quot;,&quot;**/__tests__/**&quot;,&quot;test.js&quot;,&quot;test-*.js&quot;,&quot;**/*.test.js&quot;,&quot;**/webpack.config.js&quot;,&quot;**/webpack.config.*.js&quot;,&quot;**/rollup.config.js&quot;,&quot;**/gulpfile.js&quot;,&quot;**/gulpfile.*.js&quot;,&quot;**/Gruntfile&quot;],&quot;optionalDependencies&quot;:false}</ins>]
170+
- [<ins>&quot;error&quot;</ins>, <ins>{&quot;devDependencies&quot;:[&quot;test/**&quot;,&quot;tests/**&quot;,&quot;spec/**&quot;,&quot;**/__tests__/**&quot;,&quot;test.{js,jsx}&quot;,&quot;test-*.{js,jsx}&quot;,&quot;**/*.{test,spec}.{js,jsx}&quot;,&quot;**/jest.config.js&quot;,&quot;**/webpack.config.js&quot;,&quot;**/webpack.config.*.js&quot;,&quot;**/rollup.config.js&quot;,&quot;**/rollup.config.*.js&quot;,&quot;**/gulpfile.js&quot;,&quot;**/gulpfile.*.js&quot;,&quot;**/Gruntfile{,.js}&quot;,&quot;**/protractor.conf.*.js&quot;],&quot;optionalDependencies&quot;:false}</ins>]
157171
- import/no-internal-modules
158172
- [<ins>&quot;off&quot;</ins>, <ins>{&quot;allow&quot;:[]}</ins>]
159173
- import/no-mutable-exports
@@ -252,9 +266,15 @@ should be added to the list in [the diff task](../../tasks/docs/diffs/diffs-to-r
252266
-
253267
[no-await-in-loop](http://eslint.org/docs/rules/no-await-in-loop.html)
254268
- [<ins>&quot;error&quot;</ins>]
269+
-
270+
[no-buffer-constructor](http://eslint.org/docs/rules/no-buffer-constructor.html)
271+
- [<ins>&quot;off&quot;</ins>]
255272
-
256273
[no-case-declarations](http://eslint.org/docs/rules/no-case-declarations.html)
257274
- [<ins>&quot;error&quot;</ins>]
275+
-
276+
[no-compare-neg-zero](http://eslint.org/docs/rules/no-compare-neg-zero.html)
277+
- [<ins>&quot;off&quot;</ins>]
258278
-
259279
[no-confusing-arrow](http://eslint.org/docs/rules/no-confusing-arrow.html)
260280
- [<ins>&quot;error&quot;</ins>, <ins>{&quot;allowParens&quot;:true}</ins>]
@@ -299,7 +319,7 @@ should be added to the list in [the diff task](../../tasks/docs/diffs/diffs-to-r
299319
- [<ins>&quot;error&quot;</ins>]
300320
-
301321
[no-restricted-globals](http://eslint.org/docs/rules/no-restricted-globals.html)
302-
- [<ins>&quot;off&quot;</ins>]
322+
- [<ins>&quot;off&quot;</ins>, <ins>&quot;addEventListener&quot;</ins>, <ins>&quot;blur&quot;</ins>, <ins>&quot;close&quot;</ins>, <ins>&quot;closed&quot;</ins>, <ins>&quot;confirm&quot;</ins>, <ins>&quot;defaultStatus&quot;</ins>, <ins>&quot;event&quot;</ins>, <ins>&quot;external&quot;</ins>, <ins>&quot;defaultstatus&quot;</ins>, <ins>&quot;find&quot;</ins>, <ins>&quot;focus&quot;</ins>, <ins>&quot;frameElement&quot;</ins>, <ins>&quot;frames&quot;</ins>, <ins>&quot;history&quot;</ins>, <ins>&quot;innerHeight&quot;</ins>, <ins>&quot;innerWidth&quot;</ins>, <ins>&quot;length&quot;</ins>, <ins>&quot;location&quot;</ins>, <ins>&quot;locationbar&quot;</ins>, <ins>&quot;menubar&quot;</ins>, <ins>&quot;moveBy&quot;</ins>, <ins>&quot;moveTo&quot;</ins>, <ins>&quot;name&quot;</ins>, <ins>&quot;onblur&quot;</ins>, <ins>&quot;onerror&quot;</ins>, <ins>&quot;onfocus&quot;</ins>, <ins>&quot;onload&quot;</ins>, <ins>&quot;onresize&quot;</ins>, <ins>&quot;onunload&quot;</ins>, <ins>&quot;open&quot;</ins>, <ins>&quot;opener&quot;</ins>, <ins>&quot;opera&quot;</ins>, <ins>&quot;outerHeight&quot;</ins>, <ins>&quot;outerWidth&quot;</ins>, <ins>&quot;pageXOffset&quot;</ins>, <ins>&quot;pageYOffset&quot;</ins>, <ins>&quot;parent&quot;</ins>, <ins>&quot;print&quot;</ins>, <ins>&quot;removeEventListener&quot;</ins>, <ins>&quot;resizeBy&quot;</ins>, <ins>&quot;resizeTo&quot;</ins>, <ins>&quot;screen&quot;</ins>, <ins>&quot;screenLeft&quot;</ins>, <ins>&quot;screenTop&quot;</ins>, <ins>&quot;screenX&quot;</ins>, <ins>&quot;screenY&quot;</ins>, <ins>&quot;scroll&quot;</ins>, <ins>&quot;scrollbars&quot;</ins>, <ins>&quot;scrollBy&quot;</ins>, <ins>&quot;scrollTo&quot;</ins>, <ins>&quot;scrollX&quot;</ins>, <ins>&quot;scrollY&quot;</ins>, <ins>&quot;self&quot;</ins>, <ins>&quot;status&quot;</ins>, <ins>&quot;statusbar&quot;</ins>, <ins>&quot;stop&quot;</ins>, <ins>&quot;toolbar&quot;</ins>, <ins>&quot;top&quot;</ins>]
303323
-
304324
[no-restricted-imports](http://eslint.org/docs/rules/no-restricted-imports.html)
305325
- [<ins>&quot;off&quot;</ins>]
@@ -308,7 +328,7 @@ should be added to the list in [the diff task](../../tasks/docs/diffs/diffs-to-r
308328
- [<ins>&quot;error&quot;</ins>, <ins>{&quot;object&quot;:&quot;arguments&quot;,&quot;property&quot;:&quot;callee&quot;,&quot;message&quot;:&quot;arguments.callee is deprecated&quot;}</ins>, <ins>{&quot;property&quot;:&quot;__defineGetter__&quot;,&quot;message&quot;:&quot;Please use Object.defineProperty instead.&quot;}</ins>, <ins>{&quot;property&quot;:&quot;__defineSetter__&quot;,&quot;message&quot;:&quot;Please use Object.defineProperty instead.&quot;}</ins>, <ins>{&quot;object&quot;:&quot;Math&quot;,&quot;property&quot;:&quot;pow&quot;,&quot;message&quot;:&quot;Use the exponentiation operator (**) instead.&quot;}</ins>]
309329
-
310330
[no-restricted-syntax](http://eslint.org/docs/rules/no-restricted-syntax.html)
311-
- [<ins>&quot;error&quot;</ins>, <ins>&quot;ForInStatement&quot;</ins>, <ins>&quot;ForOfStatement&quot;</ins>, <ins>&quot;LabeledStatement&quot;</ins>, <ins>&quot;WithStatement&quot;</ins>]
331+
- [<ins>&quot;error&quot;</ins>, <ins>{&quot;selector&quot;:&quot;ForInStatement&quot;,&quot;message&quot;:&quot;for..in loops iterate over the entire prototype chain, which is virtually never what you want. Use Object.{keys,values,entries}, and iterate over the resulting array.&quot;}</ins>, <ins>{&quot;selector&quot;:&quot;ForOfStatement&quot;,&quot;message&quot;:&quot;iterators/generators require regenerator-runtime, which is too heavyweight for this guide to allow them. Separately, loops should be avoided in favor of array iterations.&quot;}</ins>, <ins>{&quot;selector&quot;:&quot;LabeledStatement&quot;,&quot;message&quot;:&quot;Labels are a form of GOTO; using them makes code confusing and hard to maintain and understand.&quot;}</ins>, <ins>{&quot;selector&quot;:&quot;WithStatement&quot;,&quot;message&quot;:&quot;&#x60;with&#x60; is disallowed in strict mode because it makes code impossible to predict and optimize.&quot;}</ins>]
312332
-
313333
[no-return-await](http://eslint.org/docs/rules/no-return-await.html)
314334
- [<ins>&quot;error&quot;</ins>]
@@ -354,18 +374,24 @@ should be added to the list in [the diff task](../../tasks/docs/diffs/diffs-to-r
354374
-
355375
[no-whitespace-before-property](http://eslint.org/docs/rules/no-whitespace-before-property.html)
356376
- [<ins>&quot;error&quot;</ins>]
377+
-
378+
[nonblock-statement-body-position](http://eslint.org/docs/rules/nonblock-statement-body-position.html)
379+
- [<ins>&quot;off&quot;</ins>]
357380
-
358381
[object-curly-newline](http://eslint.org/docs/rules/object-curly-newline.html)
359-
- [<ins>&quot;off&quot;</ins>, <ins>{&quot;ObjectExpression&quot;:{&quot;minProperties&quot;:0,&quot;multiline&quot;:true},&quot;ObjectPattern&quot;:{&quot;minProperties&quot;:0,&quot;multiline&quot;:true}}</ins>]
382+
- [<ins>&quot;off&quot;</ins>, <ins>{&quot;ObjectExpression&quot;:{&quot;minProperties&quot;:3,&quot;multiline&quot;:true,&quot;consistent&quot;:true},&quot;ObjectPattern&quot;:{&quot;minProperties&quot;:3,&quot;multiline&quot;:true,&quot;consistent&quot;:true}}</ins>]
360383
-
361384
[object-property-newline](http://eslint.org/docs/rules/object-property-newline.html)
362385
- [<ins>&quot;error&quot;</ins>, <ins>{&quot;allowMultiplePropertiesPerLine&quot;:true}</ins>]
363386
-
364387
[one-var-declaration-per-line](http://eslint.org/docs/rules/one-var-declaration-per-line.html)
365388
- [<ins>&quot;error&quot;</ins>, <ins>&quot;always&quot;</ins>]
389+
-
390+
[padding-line-between-statements](http://eslint.org/docs/rules/padding-line-between-statements.html)
391+
- [<ins>&quot;off&quot;</ins>]
366392
-
367393
[prefer-destructuring](http://eslint.org/docs/rules/prefer-destructuring.html)
368-
- [<ins>&quot;off&quot;</ins>, <ins>{&quot;array&quot;:true,&quot;object&quot;:true}</ins>, <ins>{&quot;enforceForRenamedProperties&quot;:false}</ins>]
394+
- [<ins>&quot;off&quot;</ins>, <ins>{&quot;VariableDeclarator&quot;:{&quot;array&quot;:false,&quot;object&quot;:true},&quot;AssignmentExpression&quot;:{&quot;array&quot;:true,&quot;object&quot;:true}}</ins>, <ins>{&quot;enforceForRenamedProperties&quot;:false}</ins>]
369395
-
370396
[prefer-numeric-literals](http://eslint.org/docs/rules/prefer-numeric-literals.html)
371397
- [<ins>&quot;error&quot;</ins>]
@@ -432,12 +458,18 @@ should be added to the list in [the diff task](../../tasks/docs/diffs/diffs-to-r
432458
-
433459
[rest-spread-spacing](http://eslint.org/docs/rules/rest-spread-spacing.html)
434460
- [<ins>&quot;error&quot;</ins>, <ins>&quot;never&quot;</ins>]
461+
-
462+
[semi-style](http://eslint.org/docs/rules/semi-style.html)
463+
- [<ins>&quot;off&quot;</ins>, <ins>&quot;last&quot;</ins>]
435464
-
436465
[sort-imports](http://eslint.org/docs/rules/sort-imports.html)
437466
- [<ins>&quot;off&quot;</ins>, <ins>{&quot;ignoreCase&quot;:false,&quot;ignoreMemberSort&quot;:false,&quot;memberSyntaxSortOrder&quot;:[&quot;none&quot;,&quot;all&quot;,&quot;multiple&quot;,&quot;single&quot;]}</ins>]
438467
-
439468
[sort-keys](http://eslint.org/docs/rules/sort-keys.html)
440469
- [<ins>&quot;off&quot;</ins>, <ins>&quot;asc&quot;</ins>, <ins>{&quot;caseSensitive&quot;:false,&quot;natural&quot;:true}</ins>]
470+
-
471+
[switch-colon-spacing](http://eslint.org/docs/rules/switch-colon-spacing.html)
472+
- [<ins>&quot;off&quot;</ins>, <ins>{&quot;after&quot;:true,&quot;before&quot;:false}</ins>]
441473
-
442474
[symbol-description](http://eslint.org/docs/rules/symbol-description.html)
443475
- [<ins>&quot;error&quot;</ins>]
@@ -591,7 +623,7 @@ should be added to the list in [the diff task](../../tasks/docs/diffs/diffs-to-r
591623
-
592624
[no-extra-parens](http://eslint.org/docs/rules/no-extra-parens.html)
593625
- [<del>&quot;error&quot;</del>, <del>&quot;functions&quot;</del>]
594-
- [<ins>&quot;off&quot;</ins>, <ins>&quot;all&quot;</ins>, <ins>{&quot;conditionalAssign&quot;:true,&quot;nestedBinaryExpressions&quot;:false,&quot;returnAssign&quot;:false}</ins>]
626+
- [<ins>&quot;off&quot;</ins>, <ins>&quot;all&quot;</ins>, <ins>{&quot;conditionalAssign&quot;:true,&quot;nestedBinaryExpressions&quot;:false,&quot;returnAssign&quot;:false,&quot;ignoreJSX&quot;:&quot;all&quot;,&quot;enforceForArrowConditionals&quot;:false}</ins>]
595627
-
596628
[no-implicit-coercion](http://eslint.org/docs/rules/no-implicit-coercion.html)
597629
- [&quot;off&quot;]
@@ -619,7 +651,7 @@ should be added to the list in [the diff task](../../tasks/docs/diffs/diffs-to-r
619651
-
620652
[no-multi-spaces](http://eslint.org/docs/rules/no-multi-spaces.html)
621653
- [<del>&quot;off&quot;</del>]
622-
- [<ins>&quot;error&quot;</ins>]
654+
- [<ins>&quot;error&quot;</ins>, <ins>{}</ins>]
623655
-
624656
[no-multiple-empty-lines](http://eslint.org/docs/rules/no-multiple-empty-lines.html)
625657
- [&quot;error&quot;, <del>{&quot;max&quot;:2}</del>]
@@ -635,7 +667,7 @@ should be added to the list in [the diff task](../../tasks/docs/diffs/diffs-to-r
635667
-
636668
[no-param-reassign](http://eslint.org/docs/rules/no-param-reassign.html)
637669
- [&quot;error&quot;]
638-
- [&quot;error&quot;, <ins>{&quot;props&quot;:true}</ins>]
670+
- [&quot;error&quot;, <ins>{&quot;props&quot;:true,&quot;ignorePropertyModificationsFor&quot;:[&quot;acc&quot;,&quot;e&quot;,&quot;ctx&quot;,&quot;req&quot;,&quot;request&quot;,&quot;res&quot;,&quot;response&quot;,&quot;$scope&quot;]}</ins>]
639671
-
640672
[no-path-concat](http://eslint.org/docs/rules/no-path-concat.html)
641673
- [<del>&quot;off&quot;</del>]
@@ -648,10 +680,18 @@ should be added to the list in [the diff task](../../tasks/docs/diffs/diffs-to-r
648680
[no-regex-spaces](http://eslint.org/docs/rules/no-regex-spaces.html)
649681
- [<del>&quot;off&quot;</del>]
650682
- [<ins>&quot;error&quot;</ins>]
683+
-
684+
[no-return-assign](http://eslint.org/docs/rules/no-return-assign.html)
685+
- [&quot;error&quot;]
686+
- [&quot;error&quot;, <ins>&quot;always&quot;</ins>]
651687
-
652688
[no-this-before-super](http://eslint.org/docs/rules/no-this-before-super.html)
653689
- [<del>&quot;off&quot;</del>]
654690
- [<ins>&quot;error&quot;</ins>]
691+
-
692+
[no-trailing-spaces](http://eslint.org/docs/rules/no-trailing-spaces.html)
693+
- [&quot;error&quot;]
694+
- [&quot;error&quot;, <ins>{&quot;skipBlankLines&quot;:false}</ins>]
655695
-
656696
[no-undef](http://eslint.org/docs/rules/no-undef.html)
657697
- [<del>&quot;off&quot;</del>]
@@ -663,7 +703,7 @@ should be added to the list in [the diff task](../../tasks/docs/diffs/diffs-to-r
663703
-
664704
[no-underscore-dangle](http://eslint.org/docs/rules/no-underscore-dangle.html)
665705
- [<del>&quot;off&quot;</del>]
666-
- [<ins>&quot;error&quot;</ins>, <ins>{&quot;allowAfterThis&quot;:false}</ins>]
706+
- [<ins>&quot;error&quot;</ins>, <ins>{&quot;allow&quot;:[],&quot;allowAfterThis&quot;:false,&quot;allowAfterSuper&quot;:false}</ins>]
667707
-
668708
[no-unexpected-multiline](http://eslint.org/docs/rules/no-unexpected-multiline.html)
669709
- [<del>&quot;off&quot;</del>]
@@ -675,7 +715,15 @@ should be added to the list in [the diff task](../../tasks/docs/diffs/diffs-to-r
675715
-
676716
[no-unused-expressions](http://eslint.org/docs/rules/no-unused-expressions.html)
677717
- [<del>&quot;off&quot;</del>]
678-
- [<ins>&quot;error&quot;</ins>, <ins>{&quot;allowShortCircuit&quot;:false,&quot;allowTernary&quot;:false}</ins>]
718+
- [<ins>&quot;error&quot;</ins>, <ins>{&quot;allowShortCircuit&quot;:false,&quot;allowTernary&quot;:false,&quot;allowTaggedTemplates&quot;:false}</ins>]
719+
-
720+
[no-unused-vars](http://eslint.org/docs/rules/no-unused-vars.html)
721+
- [&quot;error&quot;, <del>{&quot;vars&quot;:&quot;local&quot;,&quot;args&quot;:&quot;after-used&quot;}</del>]
722+
- [&quot;error&quot;, <ins>{&quot;vars&quot;:&quot;all&quot;,&quot;args&quot;:&quot;after-used&quot;,&quot;ignoreRestSiblings&quot;:true}</ins>]
723+
-
724+
[no-use-before-define](http://eslint.org/docs/rules/no-use-before-define.html)
725+
- [&quot;error&quot;]
726+
- [&quot;error&quot;, <ins>{&quot;functions&quot;:true,&quot;classes&quot;:true,&quot;variables&quot;:true}</ins>]
679727
-
680728
[no-void](http://eslint.org/docs/rules/no-void.html)
681729
- [<del>&quot;off&quot;</del>]
@@ -798,7 +846,7 @@ should be added to the list in [the diff task](../../tasks/docs/diffs/diffs-to-r
798846
-
799847
[spaced-comment](http://eslint.org/docs/rules/spaced-comment.html)
800848
- [&quot;error&quot;]
801-
- [&quot;error&quot;, <ins>&quot;always&quot;</ins>, <ins>{&quot;line&quot;:{&quot;exceptions&quot;:[&quot;-&quot;,&quot;+&quot;],&quot;markers&quot;:[&quot;&#x3D;&quot;,&quot;!&quot;]},&quot;block&quot;:{&quot;exceptions&quot;:[&quot;-&quot;,&quot;+&quot;],&quot;markers&quot;:[&quot;&#x3D;&quot;,&quot;!&quot;],&quot;balanced&quot;:false}}</ins>]
849+
- [&quot;error&quot;, <ins>&quot;always&quot;</ins>, <ins>{&quot;line&quot;:{&quot;exceptions&quot;:[&quot;-&quot;,&quot;+&quot;],&quot;markers&quot;:[&quot;&#x3D;&quot;,&quot;!&quot;]},&quot;block&quot;:{&quot;exceptions&quot;:[&quot;-&quot;,&quot;+&quot;],&quot;markers&quot;:[&quot;&#x3D;&quot;,&quot;!&quot;],&quot;balanced&quot;:true}}</ins>]
802850
-
803851
[valid-typeof](http://eslint.org/docs/rules/valid-typeof.html)
804852
- [<del>&quot;off&quot;</del>]

packages/eslint-config-hudl/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-hudl",
3-
"version": "5.0.0",
3+
"version": "5.0.1",
44
"description": "Hudl's ESLint config, following our styleguide",
55
"main": "index.js",
66
"scripts": {
@@ -38,7 +38,7 @@
3838
},
3939
"homepage": "https://github.com/hudl/javascript/packages/eslint-config-hudl",
4040
"publishConfig": {
41-
"registry": "http://npm.thorhudl.com"
41+
"registry": "http://npm-push.hudltools.com"
4242
},
4343
"hudl-ci": {
4444
"buildCommand": null,

0 commit comments

Comments
 (0)