@hellomouse/eslint-config
Advanced tools
Comparing version 1.0.2 to 1.1.0
10
index.js
module.exports = { | ||
extends: [ | ||
'eslint:recommended', | ||
'eslint-config-google' | ||
'eslint-config-google', | ||
'plugin:jsdoc/recommended' | ||
], | ||
// use new jsdoc comment as jsdoc functionality in core eslint is deprecated | ||
plugins: ['jsdoc'], | ||
rules: { | ||
@@ -41,4 +44,7 @@ // highly subjective: dangling commas feel weird, | ||
// changing from const to let is a bit annoying | ||
'prefer-const': 'off' | ||
'prefer-const': 'off', | ||
// use jsdoc/require-jsdoc instead | ||
'require-jsdoc': 'off' | ||
} | ||
}; |
{ | ||
"name": "@hellomouse/eslint-config", | ||
"version": "1.0.2", | ||
"version": "1.1.0", | ||
"description": "Official ESLint config for Hellomouse, based off of Google's config", | ||
@@ -28,3 +28,4 @@ "main": "index.js", | ||
"peerDependencies": { | ||
"eslint": ">=5.16.0" | ||
"eslint": ">=6.2.2", | ||
"eslint-plugin-jsdoc": ">=15.8.3" | ||
}, | ||
@@ -31,0 +32,0 @@ "dependencies": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3442
40
3