@roadmunk/eslint-config-roadmunk
Advanced tools
Comparing version 2.0.7 to 2.0.8
26
index.js
@@ -45,8 +45,8 @@ module.exports = { | ||
'brace-style' : [ 'warn', 'stroustrup' ], | ||
'camelcase' : [ 'warn', { properties : 'always' }], | ||
'camelcase' : [ 'warn', { properties : 'always' } ], | ||
'no-array-constructor' : [ 'warn' ], | ||
'no-nested-ternary' : [ 'warn' ], | ||
'no-mixed-spaces-and-tabs' : [ 'warn', 'smart-tabs' ], | ||
'object-property-newline' : [ 'warn', { allowMultiplePropertiesPerLine : true }], | ||
'func-style' : [ 'warn', 'declaration', { allowArrowFunctions : true }], | ||
'object-property-newline' : [ 'warn', { allowMultiplePropertiesPerLine : true } ], | ||
'func-style' : [ 'warn', 'declaration', { allowArrowFunctions : true } ], | ||
@@ -56,10 +56,10 @@ // automatically fixable | ||
'dot-location' : [ 'warn', 'property' ], | ||
'dot-notation' : [ 'warn', { allowPattern : '^[A-Za-z]+(_[A-Za-z0-9]+)+$' }], | ||
'dot-notation' : [ 'warn', { allowPattern : '^[A-Za-z]+(_[A-Za-z0-9]+)+$' } ], | ||
'no-extra-bind' : [ 'warn' ], | ||
'no-floating-decimal' : [ 'warn' ], | ||
'no-implicit-coercion' : [ 'warn', { allow : [ '!!' ] }], | ||
'no-implicit-coercion' : [ 'warn', { allow : [ '!!' ] } ], | ||
'yoda' : [ 'warn' ], | ||
'no-undef-init' : [ 'warn' ], | ||
'array-bracket-spacing' : [ 'warn', 'always', { objectsInArrays : false, arraysInArrays : false }], | ||
'comma-dangle' : [ 'warn', { objects : 'always-multiline', arrays : 'always-multiline', functions : 'never' }], | ||
'array-bracket-spacing' : [ 'warn', 'always', { objectsInArrays : true, arraysInArrays : true } ], | ||
'comma-dangle' : [ 'warn', { objects : 'always-multiline', arrays : 'always-multiline', functions : 'never' } ], | ||
'comma-spacing' : [ 'warn' ], | ||
@@ -70,3 +70,3 @@ 'comma-style' : [ 'warn' ], | ||
'func-call-spacing' : [ 'warn' ], | ||
'indent' : [ 'warn', 'tab', { SwitchCase : 1 }], | ||
'indent' : [ 'warn', 'tab', { SwitchCase : 1 } ], | ||
'key-spacing' : [ 'warn', { | ||
@@ -76,3 +76,3 @@ beforeColon : true, | ||
align : 'colon', | ||
}], | ||
} ], | ||
'keyword-spacing' : [ 'warn' ], | ||
@@ -82,3 +82,3 @@ 'linebreak-style' : [ 'warn', 'unix' ], | ||
'no-lonely-if' : [ 'warn' ], | ||
'no-multiple-empty-lines' : [ 'warn', { max : 2, maxEOF : 1, maxBOF : 0 }], | ||
'no-multiple-empty-lines' : [ 'warn', { max : 2, maxEOF : 1, maxBOF : 0 } ], | ||
'no-trailing-spaces' : [ 'warn' ], | ||
@@ -89,3 +89,3 @@ 'no-whitespace-before-property' : [ 'warn' ], | ||
'quote-props' : [ 'warn', 'consistent-as-needed' ], | ||
'quotes' : [ 'warn', 'single', { avoidEscape : true }], | ||
'quotes' : [ 'warn', 'single', { avoidEscape : true } ], | ||
'semi' : [ 'warn', 'always' ], | ||
@@ -98,6 +98,6 @@ 'semi-spacing' : [ 'warn' ], | ||
asyncArrow : 'always', | ||
}], | ||
} ], | ||
'space-in-parens' : [ 'warn', 'never' ], | ||
'space-infix-ops' : [ 'warn' ], | ||
'space-unary-ops' : [ 'warn', { words : true, nonwords : false }], | ||
'space-unary-ops' : [ 'warn', { words : true, nonwords : false } ], | ||
'spaced-comment' : [ 'warn', 'always' ], | ||
@@ -104,0 +104,0 @@ 'arrow-parens' : [ 'warn', 'as-needed' ], |
{ | ||
"name": "@roadmunk/eslint-config-roadmunk", | ||
"version": "2.0.7", | ||
"version": "2.0.8", | ||
"description": "This holds the base Roadmunk shop standard ESLint configuration file.", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -9,3 +9,3 @@ This holds the base Roadmunk shop standard ESLint configuration file. | ||
"devDependencies" : { | ||
"eslint-config-roadmunk" : "roadmunk/eslint-config-roadmunk" | ||
"@roadmunk/eslint-config-roadmunk": "^2.0.8", | ||
} | ||
@@ -20,2 +20,2 @@ } | ||
} | ||
``` | ||
``` |
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
20
5948