2015-04-28 20:03:05 +03:00
|
|
|
env:
|
|
|
|
node: true
|
|
|
|
|
|
|
|
# enable ECMAScript features
|
|
|
|
ecmaFeatures:
|
|
|
|
blockBindings: true
|
|
|
|
templateStrings: true
|
|
|
|
octalLiterals: true
|
|
|
|
binaryLiterals: true
|
2015-05-03 21:11:33 +03:00
|
|
|
generators: true
|
2015-05-19 14:00:06 +03:00
|
|
|
forOf: true
|
2015-05-22 17:50:36 +03:00
|
|
|
objectLiteralShorthandProperties: true
|
2015-04-28 20:03:05 +03:00
|
|
|
|
|
|
|
rules:
|
|
|
|
# Possible Errors
|
|
|
|
# list: https://github.com/eslint/eslint/tree/master/docs/rules#possible-errors
|
|
|
|
## check debugger sentence
|
|
|
|
no-debugger: 2
|
|
|
|
## check duplicate arguments
|
|
|
|
no-dupe-args: 2
|
|
|
|
## check duplicate object keys
|
|
|
|
no-dupe-keys: 2
|
|
|
|
## check duplicate switch-case
|
|
|
|
no-duplicate-case: 2
|
|
|
|
## disallow assignment of exceptional params
|
|
|
|
no-ex-assign: 2
|
|
|
|
## disallow use of reserved words as keys like enum, class
|
|
|
|
no-reserved-keys: 2
|
|
|
|
## disallow unreachable code
|
|
|
|
no-unreachable: 2
|
|
|
|
## require valid typeof compared string like typeof foo === 'strnig'
|
|
|
|
valid-typeof: 2
|
|
|
|
|
|
|
|
# Best Practices
|
|
|
|
# list: https://github.com/eslint/eslint/tree/master/docs/rules#best-practices
|
|
|
|
## require falls through comment on switch-case
|
|
|
|
no-fallthrough: 2
|
|
|
|
|
|
|
|
# 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
|
2015-06-11 20:08:25 +03:00
|
|
|
quotes: [2, "single", "avoid-escape"]
|
2015-04-28 20:03:05 +03:00
|
|
|
## 2 space indentation
|
2015-06-11 20:08:25 +03:00
|
|
|
indent: [2, 2]
|
2015-04-28 20:03:05 +03:00
|
|
|
## add space after comma
|
2015-06-28 18:42:35 +03:00
|
|
|
comma-spacing: 2
|
2015-04-28 20:03:05 +03:00
|
|
|
## put semi-colon
|
|
|
|
semi: 2
|
|
|
|
## require spaces operator like var sum = 1 + 1;
|
|
|
|
space-infix-ops: 2
|
|
|
|
## require spaces return, throw, case
|
|
|
|
space-return-throw-case: 2
|
2015-05-19 14:00:06 +03:00
|
|
|
## no space before function, eg. 'function()'
|
|
|
|
space-before-function-paren: [2, "never"]
|
|
|
|
## require space before blocks, eg 'function() {'
|
|
|
|
space-before-blocks: [2, "always"]
|
2015-04-28 20:03:05 +03:00
|
|
|
## require parens for Constructor
|
|
|
|
new-parens: 2
|
|
|
|
## max 80 length
|
2015-06-11 20:08:25 +03:00
|
|
|
max-len: [2, 80, 2]
|
2015-06-13 22:33:46 +03:00
|
|
|
## max 2 consecutive empty lines
|
|
|
|
no-multiple-empty-lines: [2, {max: 2}]
|
|
|
|
## require newline at end of files
|
|
|
|
eol-last: 2
|
|
|
|
## no trailing spaces
|
|
|
|
no-trailing-spaces: 2
|
2015-04-28 20:03:05 +03:00
|
|
|
|
|
|
|
# Strict Mode
|
|
|
|
# list: https://github.com/eslint/eslint/tree/master/docs/rules#strict-mode
|
|
|
|
## 'use strict' on top
|
2015-06-11 20:08:25 +03:00
|
|
|
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
|
2015-04-28 20:03:05 +03:00
|
|
|
|
|
|
|
# Global scoped method and vars
|
2015-05-11 15:24:38 +03:00
|
|
|
globals:
|
2015-06-11 20:08:25 +03:00
|
|
|
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
|