mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
1e2fa1537f
PR-URL: https://github.com/iojs/io.js/pull/904 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
21 lines
435 B
Plaintext
21 lines
435 B
Plaintext
{
|
|
"env" : {
|
|
"node" : true
|
|
},
|
|
"rules" : {
|
|
"semi": [2, "never"],
|
|
"strict": 0,
|
|
"quotes": [1, "double", "avoid-escape"],
|
|
"no-use-before-define": 0,
|
|
"curly": 0,
|
|
"no-underscore-dangle": 0,
|
|
"no-lonely-if": 1,
|
|
"no-shadow": 0,
|
|
"no-unused-vars": [2, {"vars" : "all", "args" : "after-used"}],
|
|
"no-mixed-requires": 0,
|
|
"space-infix-ops": 0,
|
|
"key-spacing": 0,
|
|
"no-multi-spaces": 0
|
|
}
|
|
}
|