Skip to content

Commit

Permalink
Feature :: Standard (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
edlb authored Apr 10, 2019
1 parent 62dd793 commit 1fcaf98
Show file tree
Hide file tree
Showing 5 changed files with 906 additions and 627 deletions.
28 changes: 2 additions & 26 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,7 @@
{
"extends": "airbnb-base",
"globals": {},
"extends": "standard",
"rules": {
"array-bracket-newline": [2, "consistent"],
"arrow-parens": [2, "always"],
"camelcase": 0,
"comma-dangle": [2, { "functions": "never" }],
"func-names": [2, "never"],
"function-paren-newline": [2, "consistent"],
"import/extensions": [2, { "js": "never", "json": "never" }],
"import/first": [2, { "absolute-first": false }],
"import/no-extraneous-dependencies": [2, { "devDependencies": false }],
"import/prefer-default-export": 0,
"max-len": [2, 80],
"multiline-ternary": [2, "always"],
"no-floating-decimal": 0,
"no-nested-ternary": 0,
"no-param-reassign": [2, { "props": true, "ignorePropertyModificationsFor": ["state"] }],
"no-shadow": 0,
"no-throw-literal": 0,
"no-underscore-dangle": 0,
"object-curly-newline": [2, { "consistent": true }],
"object-shorthand": [2, "never"],
"prefer-promise-reject-errors": 0,
"semi": [2, "never", { "beforeStatementContinuationChars": "always" }],
"sort-keys": [2, "asc", { "caseSensitive": false, "natural": true }],
"space-before-function-paren": [2, { "anonymous": "never", "asyncArrow": "always", "named": "never" }]
"no-throw-literal": "off"
},
"settings": {
"import/resolver": "node"
Expand Down
23 changes: 13 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,24 @@
"del-cli": "^1.1.0",
"lodash": "^4.17.11",
"node-fetch": "^2.3.0",
"rollup": "^1.0.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-executable": "^1.3.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-terser": "^4.0.1",
"rollup": "^1.9.3",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-executable": "^1.4.5",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^4.2.2",
"rollup-plugin-terser": "^4.0.4",
"spawn-sync": "^2.0.0",
"yargs": "^12.0.5"
"yargs": "^13.2.2"
},
"description": "Git flow + GitHub PRs = <3",
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-import-resolver-node": "^0.3.2",
"eslint-plugin-import": "^2.14.0"
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0"
},
"license": "MIT",
"main": "lib/releaseman",
Expand Down
1 change: 0 additions & 1 deletion src/actions/run-release-finish.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import concat from 'lodash/fp/concat'
import flow from 'lodash/fp/flow'
import get from 'lodash/fp/get'
import includes from 'lodash/fp/includes'
import map from 'lodash/fp/map'
Expand Down
1 change: 1 addition & 0 deletions src/github.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable camelcase */
import assign from 'lodash/fp/assign'
import concat from 'lodash/fp/concat'
import fetch from 'node-fetch'
Expand Down
Loading

0 comments on commit 1fcaf98

Please sign in to comment.