Skip to content

Commit

Permalink
Update NPM-version to v0.0.27
Browse files Browse the repository at this point in the history
eslint: allow empty arrow functions
  • Loading branch information
peacechen committed Apr 10, 2018
1 parent e8d0fd2 commit e7a3156
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
afterColon: true,
align: "value"
}],
no-empty-function: 2,
no-empty-function: [2, {allow: ["arrowFunctions"]}],
comma-dangle: ["error", {
"arrays": "always-multiline",
"objects": "always-multiline",
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "react-native-modal-selector",
"version": "0.0.26",
"version": "0.0.27",
"description": "A cross-platform (iOS / Android), selector/picker component for React Native that is highly customizable and supports sections.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postversion": "git push && git push --tags",
"lint": "eslint ./",
"lint-fix": "eslint --fix ./"
"lint": "./node_modules/.bin/eslint ./",
"lint-fix": "./node_modules/.bin/eslint --fix ./"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit e7a3156

Please sign in to comment.