Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
timkurvers committed Sep 10, 2015
1 parent 1821aac commit 54fefa5
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
11 changes: 11 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
const merge = require('merge');
const airbnb = require('eslint-config-airbnb/base');

const hyperoslo = {
rules: {
// Allow anonymous functions
'func-names': [0],
},
};

module.exports = merge.recursive(airbnb, hyperoslo);
16 changes: 16 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"name": "eslint-config-hyperoslo",
"version": "0.1.0",
"description": "Hyper's ESLint config",
"main": "index.js",
"scripts": {},
"repository": "hyperoslo/eslint-config",
"author": "Tim Kurvers <tim@moonsphere.net>",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^4.1.1",
"eslint": "^1.3.1",
"eslint-config-airbnb": "0.0.8",
"merge": "^1.2.0"
}
}

0 comments on commit 54fefa5

Please sign in to comment.