Skip to content

Commit

Permalink
fixed linting issues & clean up AtomLinter/linter-eslint#462
Browse files Browse the repository at this point in the history
  • Loading branch information
Festus Yeboah authored and Festus Yeboah committed Jan 4, 2018
1 parent 2d9dbf6 commit 587a7bd
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"presets": ["latest-minimal"]
"presets": ["env"]
}
27 changes: 18 additions & 9 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
{
"parserOptions": {
"ecmaVersion": 6
},
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended"
}
"ecmaFeatures": {
"modules": true,
"spread" : true,
"restParams" : true
},
"env" : {
"browser" : true,
"node" : true,
"es6" : true
},
"rules" : {
"no-unused-vars" : 2,
"no-undef" : 2
},
"parserOptions": {
"sourceType": "module"
}
}
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "reg-utils",
"name": "regus",
"version": "1.0.0",
"description": "Tiny npm package starter kit",
"keywords": [
Expand All @@ -12,7 +12,7 @@
"starter"
],
"bugs": {
"url": "https://github.com/gabmontes/tiny-package-starter/issues"
"url": "https://github.com/bretuobay/regus"
},
"license": "MIT",
"author": "Gabriel Montes <[email protected]>",
Expand All @@ -27,7 +27,7 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabmontes/tiny-package-starter.git"
"url": "git+https://github.com/bretuobay/regus"
},
"scripts": {
"lint": "npm run lint:lib && npm run lint:cli",
Expand Down Expand Up @@ -58,7 +58,7 @@
"mocha": "^3.1.2",
"nyc": "^11.0.0"
},
"homepage": "https://github.com/gabmontes/tiny-package-starter#readme",
"homepage": "https://github.com/bretuobay/regus#readme",
"directories": {
"lib": "lib",
"test": "test"
Expand Down

0 comments on commit 587a7bd

Please sign in to comment.