Skip to content

Commit 6b40c83

Browse files
author
Jake Teton-Landis
committed
create package eslint-config-airbnb
1 parent 5cbb666 commit 6b40c83

File tree

4 files changed

+36
-1
lines changed

4 files changed

+36
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"version": "2.0.0",
44
"description": "A mostly reasonable approach to JavaScript.",
55
"scripts": {
6-
"test": "echo \"Error: no test specified\" && exit 1"
6+
"test": "echo \"Error: no test specified\" && exit 1",
7+
"publish-all": "npm publish && cd ./packages/eslint-config-airbnb && npm publish"
78
},
89
"repository": {
910
"type": "git",
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = require('airbnb-style/linters/.eslintrc');
+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "eslint-config-airbnb",
3+
"version": "0.0.1",
4+
"description": "Airbnb's ESLint config, following our styleguide",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "https://github.com/airbnb/javascript"
12+
},
13+
"keywords": [
14+
"eslint",
15+
"config",
16+
"airbnb",
17+
"javascript",
18+
"styleguide"
19+
],
20+
"author": "Jake Teton-Landis (https://twitter.com/@jitl)",
21+
"license": "MIT",
22+
"bugs": {
23+
"url": "https://github.com/airbnb/javascript/issues"
24+
},
25+
"homepage": "https://github.com/airbnb/javascript",
26+
"dependencies": {
27+
"airbnb-style": "2.0.0",
28+
"babel-eslint": "3.1.7",
29+
"eslint": "0.21.2",
30+
"eslint-plugin-react": "2.3.0"
31+
}
32+
}

0 commit comments

Comments
 (0)