eslint-config-ebay
Advanced tools
Comparing version 0.1.5 to 0.1.6
@@ -10,4 +10,4 @@ 'use strict'; | ||
ecmaVersion: 2017 | ||
}, | ||
}, | ||
"rules": {} | ||
}; |
{ | ||
"name": "eslint-config-ebay", | ||
"version": "0.1.5", | ||
"version": "0.1.6", | ||
"description": "ESLint config", | ||
@@ -26,3 +26,4 @@ "main": "index.js", | ||
"devDependencies": { | ||
"eslint": "^2.4.0" | ||
"eslint": "^2.4.0", | ||
"eslint-config-ebay": "^0.1.5" | ||
}, | ||
@@ -32,3 +33,4 @@ "publishConfig": { | ||
}, | ||
"license": "MIT" | ||
"license": "MIT", | ||
"dependencies": {} | ||
} |
@@ -90,3 +90,3 @@ 'use strict'; | ||
// rule: http://eslint.org/docs/rules/no-param-reassign.html | ||
"no-param-reassign": [2, { "props": true }], | ||
"no-param-reassign": [2], | ||
// disallow use of unary operators, ++ and -- | ||
@@ -93,0 +93,0 @@ "no-plusplus": 0, |
@@ -12,3 +12,3 @@ 'use strict'; | ||
const rulesAvailable = fs.readdirSync(path.join(__dirname, '../rules')) | ||
.map(name => path.join(process.cwd(), 'rules', name)), | ||
.map(name => path.join(process.cwd(), 'node_modules/eslint-config-ebay/rules', name)), | ||
legacyRulesAvailable = rulesAvailable.filter(rule => !isES6Rule(rule)), | ||
@@ -15,0 +15,0 @@ legacyRulesIncluded = require('../legacy').extends, |
Sorry, the diff of this file is not supported yet
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
24414
2