Typos and copy

This commit is contained in:
jquense
2015-06-19 00:08:09 -04:00
parent cc35677cff
commit e9e6dee39a
2 changed files with 14 additions and 5 deletions

View File

@@ -3,6 +3,12 @@
module.exports = {
rules: {
'object-shorthand': require('./rules/object-shorthand'),
'generator-star': require('./rules/object-shorthand')
'generator-star-spacing': require('./rules/generator-star-spacing'),
'generator-star': require('./rules/generator-star')
},
rulesConfig: {
'generator-star-spacing': 0,
'generator-star': 0,
'object-shorthand': 0
}
};

View File

@@ -1,10 +1,10 @@
{
"name": "eslint-plugin-babel",
"version": "1.0.0",
"description": "eslint rule plugin companion to babel-eslint",
"description": "an eslint rule plugin companion to babel-eslint",
"main": "index.js",
"scripts": {
"test": "mocha -R spec ./tests/*.js"
"test": "mocha ./tests/*.js"
},
"repository": {
"type": "git",
@@ -14,21 +14,24 @@
"babel",
"eslint",
"eslintplugin",
"eslint-plugin",
"babel-eslint"
],
"author": "jquense @monasticpanic",
"author": "Jason Quense @monasticpanic",
"license": "MIT",
"bugs": {
"url": "https://github.com/babel/eslint-plugin-babel/issues"
},
"homepage": "https://github.com/babel/eslint-plugin-babel#readme",
"peerDependencies": {
"eslint": ">=0.8.0"
},
"devDependencies": {
"babel-eslint": "^3.1.17",
"eslint": "^0.23.0",
"eslint-tester": "^0.8.0",
"is-my-json-valid": "^2.12.0",
"mocha": "^2.2.5",
"mocha-phantomjs": "^3.5.3",
"phantomjs": "^1.9.17"
},
"dependencies": {