Browse Source
Was using 'eslint-config-dmajda' by @dmajda, but since it's diffucult for me to use multiple styles across multiple projects, I'm switching to my own 'eslint-config-futagozaryuu'.master
7 changed files with 32 additions and 23 deletions
@ -0,0 +1,8 @@ |
|||
"use strict"; |
|||
|
|||
module.exports = { |
|||
|
|||
"extends": "futagozaryuu/node-v4", |
|||
"root": true |
|||
|
|||
}; |
@ -1,11 +0,0 @@ |
|||
{ |
|||
"extends": "dmajda", |
|||
"env": { |
|||
"node": true |
|||
}, |
|||
"root": true, |
|||
"rules": { |
|||
"linebreak-style": 0, |
|||
"no-console": 0 |
|||
} |
|||
} |
@ -0,0 +1,11 @@ |
|||
"use strict"; |
|||
|
|||
module.exports = { |
|||
|
|||
"extends": "futagozaryuu/es2015", |
|||
"env": { |
|||
"commonjs": true |
|||
}, |
|||
"root": true |
|||
|
|||
}; |
@ -1,6 +0,0 @@ |
|||
{ |
|||
"env": { |
|||
"node": false, |
|||
"commonjs": true |
|||
} |
|||
} |
@ -0,0 +1,12 @@ |
|||
"use strict"; |
|||
|
|||
module.exports = { |
|||
|
|||
"extends": "futagozaryuu/test", |
|||
"rules": { |
|||
|
|||
"node/shebang": 0 |
|||
|
|||
} |
|||
|
|||
}; |
@ -1,5 +0,0 @@ |
|||
{ |
|||
"env": { |
|||
"mocha": true |
|||
} |
|||
} |
Loading…
Reference in new issue