Skip to content

Commit

Permalink
Merge pull request #2 from leviy/update-airbnb-base
Browse files Browse the repository at this point in the history
Updated eslint airbnb base package dependency
  • Loading branch information
denniscoorn committed Oct 8, 2018
2 parents e643ea3 + 4fc46d9 commit 73dff67
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions packages/eslint-config-default/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,12 @@ module.exports = {
'no-underscore-dangle': ['error', {
'allowAfterThis': true
}],
'object-shorthand': ['error', 'never'],
'object-shorthand': ['error', 'methods'],
'prefer-destructuring': ['error', {
'array': false
}]
}],
"no-param-reassign": [
"error", { "props": false }
]
}
};
4 changes: 2 additions & 2 deletions packages/eslint-config-default/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@leviy/eslint-config-default",
"version": "1.0.1",
"version": "1.1.0",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:leviy/javascript-coding-standard.git"
},
"homepage": "https://github.com/leviy/javascript-coding-standard/tree/master/packages/eslint-config-default/",
"dependencies": {
"eslint-config-airbnb-base": "^12.1",
"eslint-config-airbnb-base": "^13.1",
"eslint-plugin-jest": "^21.15"
},
"peerDependencies": {
Expand Down

0 comments on commit 73dff67

Please sign in to comment.