Skip to content

Commit

Permalink
create package eslint-config-airbnb
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake Teton-Landis committed May 22, 2015
1 parent 5cbb666 commit 6b40c83
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"version": "2.0.0",
"description": "A mostly reasonable approach to JavaScript.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "echo \"Error: no test specified\" && exit 1",
"publish-all": "npm publish && cd ./packages/eslint-config-airbnb && npm publish"
},
"repository": {
"type": "git",
Expand Down
1 change: 1 addition & 0 deletions packages/eslint-config-airbnb/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = require('airbnb-style/linters/.eslintrc');
32 changes: 32 additions & 0 deletions packages/eslint-config-airbnb/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"name": "eslint-config-airbnb",
"version": "0.0.1",
"description": "Airbnb's ESLint config, following our styleguide",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/airbnb/javascript"
},
"keywords": [
"eslint",
"config",
"airbnb",
"javascript",
"styleguide"
],
"author": "Jake Teton-Landis (https://twitter.com/@jitl)",
"license": "MIT",
"bugs": {
"url": "https://github.com/airbnb/javascript/issues"
},
"homepage": "https://github.com/airbnb/javascript",
"dependencies": {
"airbnb-style": "2.0.0",
"babel-eslint": "3.1.7",
"eslint": "0.21.2",
"eslint-plugin-react": "2.3.0"
}
}

0 comments on commit 6b40c83

Please sign in to comment.