summaryrefslogtreecommitdiff
path: root/deps/npm/.eslintrc
diff options
context:
space:
mode:
authorTimothy J Fontaine <tjfontaine@gmail.com>2014-07-31 09:05:30 -0700
committerTimothy J Fontaine <tjfontaine@gmail.com>2014-07-31 09:05:30 -0700
commit1223cafea647e2af4580f4990dc313abf4f7a802 (patch)
tree86187cebe369b35e0075976cefcbe73fd58aede4 /deps/npm/.eslintrc
parent4f1ae11a62b97052bc83756f8cb8700cc1f61661 (diff)
downloadnode-1223cafea647e2af4580f4990dc313abf4f7a802.tar.gz
npm: Upgrade to v1.4.21
Diffstat (limited to 'deps/npm/.eslintrc')
-rw-r--r--deps/npm/.eslintrc18
1 files changed, 18 insertions, 0 deletions
diff --git a/deps/npm/.eslintrc b/deps/npm/.eslintrc
new file mode 100644
index 000000000..5c39c67ec
--- /dev/null
+++ b/deps/npm/.eslintrc
@@ -0,0 +1,18 @@
+{
+ "env" : {
+ "node" : true
+ },
+ "rules" : {
+ "curly" : 0,
+ "no-lonely-if" : 1,
+ "no-mixed-requires" : 0,
+ "no-underscore-dangle" : 0,
+ "no-unused-vars" : [2, {"vars" : "all", "args" : "after-used"}],
+ "no-use-before-define" : [2, "nofunc"],
+ "quotes" : [1, "double", "avoid-escape"],
+ "semi" : [2, "never"],
+ "space-after-keywords" : 1,
+ "space-infix-ops" : 0,
+ "strict" : 0
+ }
+}