summaryrefslogtreecommitdiff
path: root/.eslintrc
diff options
context:
space:
mode:
authorRoman Reiss <me@silverwind.io>2015-06-11 19:08:25 +0200
committerRoman Reiss <me@silverwind.io>2015-06-11 20:27:35 +0200
commit6e4d30286d7305335b14762271a25f5dbc5c63c0 (patch)
treec47041787c2eb7284842104a2d8774e000787182 /.eslintrc
parentb5b8ff117c8581945d0c8c3a4b18d53f4b33b86f (diff)
downloadnodejs-6e4d30286d7305335b14762271a25f5dbc5c63c0.tar.gz
nodejs-6e4d30286d7305335b14762271a25f5dbc5c63c0.tar.bz2
nodejs-6e4d30286d7305335b14762271a25f5dbc5c63c0.zip
tools: enable/add additional eslint rules
Enables the following rules: - no-undef: Valuable rule to error on usage of undefined variables - require-buffer: Custom rule that forbids usage of the global Buffer inside lib/ because of REPL issues. PR-URL: https://github.com/nodejs/io.js/pull/1794 Reviewed-By: Trevor Norris <trev.norris@gmail.com>
Diffstat (limited to '.eslintrc')
-rw-r--r--.eslintrc64
1 files changed, 32 insertions, 32 deletions
diff --git a/.eslintrc b/.eslintrc
index 0c43234c5..7b2b15123 100644
--- a/.eslintrc
+++ b/.eslintrc
@@ -39,14 +39,9 @@ rules:
# Stylistic Issues
# list: https://github.com/eslint/eslint/tree/master/docs/rules#stylistic-issues
## use single quote, we can use double quote when escape chars
- quotes:
- - 2
- - "single"
- - "avoid-escape"
+ quotes: [2, "single", "avoid-escape"]
## 2 space indentation
- indent:
- - 2
- - 2
+ indent: [2, 2]
## add space after comma
## set to 'warn' because of https://github.com/eslint/eslint/issues/2408
comma-spacing: 1
@@ -63,35 +58,40 @@ rules:
## require parens for Constructor
new-parens: 2
## max 80 length
- max-len:
- - 2
- - 80
- - 2
+ max-len: [2, 80, 2]
# Strict Mode
# list: https://github.com/eslint/eslint/tree/master/docs/rules#strict-mode
## 'use strict' on top
- strict:
- - 2
- - "global"
+ strict: [2, "global"]
+
+ # Variables
+ # list: https://github.com/eslint/eslint/tree/master/docs/rules#variables
+ ## disallow use of undefined variables (globals)
+ no-undef: 2
+
+ # Custom rules in tools/eslint-rules
+ require-buffer: 2
# Global scoped method and vars
globals:
- DTRACE_HTTP_CLIENT_REQUEST: true
- LTTNG_HTTP_CLIENT_REQUEST: true
- COUNTER_HTTP_CLIENT_REQUEST: true
- DTRACE_HTTP_CLIENT_RESPONSE: true
- LTTNG_HTTP_CLIENT_RESPONSE: true
- COUNTER_HTTP_CLIENT_RESPONSE: true
- DTRACE_HTTP_SERVER_REQUEST: true
- LTTNG_HTTP_SERVER_REQUEST: true
- COUNTER_HTTP_SERVER_REQUEST: true
- DTRACE_HTTP_SERVER_RESPONSE: true
- LTTNG_HTTP_SERVER_RESPONSE: true
- COUNTER_HTTP_SERVER_RESPONSE: true
- DTRACE_NET_STREAM_END: true
- LTTNG_NET_STREAM_END: true
- COUNTER_NET_SERVER_CONNECTION_CLOSE: true
- DTRACE_NET_SERVER_CONNECTION: true
- LTTNG_NET_SERVER_CONNECTION: true
- COUNTER_NET_SERVER_CONNECTION: true
+ DTRACE_HTTP_CLIENT_REQUEST : false
+ LTTNG_HTTP_CLIENT_REQUEST : false
+ COUNTER_HTTP_CLIENT_REQUEST : false
+ DTRACE_HTTP_CLIENT_RESPONSE : false
+ LTTNG_HTTP_CLIENT_RESPONSE : false
+ COUNTER_HTTP_CLIENT_RESPONSE : false
+ DTRACE_HTTP_SERVER_REQUEST : false
+ LTTNG_HTTP_SERVER_REQUEST : false
+ COUNTER_HTTP_SERVER_REQUEST : false
+ DTRACE_HTTP_SERVER_RESPONSE : false
+ LTTNG_HTTP_SERVER_RESPONSE : false
+ COUNTER_HTTP_SERVER_RESPONSE : false
+ DTRACE_NET_STREAM_END : false
+ LTTNG_NET_STREAM_END : false
+ COUNTER_NET_SERVER_CONNECTION_CLOSE : false
+ DTRACE_NET_SERVER_CONNECTION : false
+ LTTNG_NET_SERVER_CONNECTION : false
+ COUNTER_NET_SERVER_CONNECTION : false
+ escape : false
+ unescape : false