2015-04-28 20:03:05 +03:00
|
|
|
env:
|
|
|
|
node: true
|
|
|
|
|
|
|
|
# enable ECMAScript features
|
|
|
|
ecmaFeatures:
|
2015-09-12 23:42:39 +03:00
|
|
|
arrowFunctions: true
|
2015-04-28 20:03:05 +03:00
|
|
|
binaryLiterals: true
|
2015-09-12 23:42:39 +03:00
|
|
|
blockBindings: true
|
|
|
|
classes: true
|
2015-05-19 14:00:06 +03:00
|
|
|
forOf: true
|
2015-09-12 23:42:39 +03:00
|
|
|
generators: true
|
2015-08-02 08:38:28 +03:00
|
|
|
objectLiteralShorthandMethods: true
|
2015-09-12 23:42:39 +03:00
|
|
|
objectLiteralShorthandProperties: true
|
|
|
|
octalLiterals: true
|
|
|
|
templateStrings: true
|
2015-04-28 20:03:05 +03:00
|
|
|
|
|
|
|
rules:
|
|
|
|
# Possible Errors
|
|
|
|
# list: https://github.com/eslint/eslint/tree/master/docs/rules#possible-errors
|
2016-02-08 16:12:09 +03:00
|
|
|
## Disallow Use of __proto__
|
|
|
|
no-proto: 2
|
2016-02-06 07:39:45 +03:00
|
|
|
## disallow control characters in regular expressions
|
|
|
|
no-control-regex: 2
|
2015-04-28 20:03:05 +03:00
|
|
|
## 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
|
2016-02-06 07:39:45 +03:00
|
|
|
## disallow the use of empty character classes in regular expressions
|
|
|
|
no-empty-character-class: 2
|
2015-04-28 20:03:05 +03:00
|
|
|
## disallow assignment of exceptional params
|
|
|
|
no-ex-assign: 2
|
2016-01-26 00:15:16 +03:00
|
|
|
## disallow extra boolean casts
|
|
|
|
no-extra-boolean-cast : 2
|
2016-02-06 07:39:45 +03:00
|
|
|
## disallow superfluous semicolons
|
|
|
|
no-extra-semi: 2
|
2016-01-26 00:15:16 +03:00
|
|
|
## validate regular expressions
|
|
|
|
no-invalid-regexp: 2
|
|
|
|
## forbid weird whitespace characters
|
|
|
|
no-irregular-whitespace: 2
|
|
|
|
## avoid unexpected multiline expressions
|
|
|
|
no-unexpected-multiline: 2
|
2016-02-06 07:39:45 +03:00
|
|
|
## disallow unreachable code
|
|
|
|
no-unreachable: 2
|
|
|
|
## require valid typeof compared string like typeof foo === 'strnig'
|
|
|
|
valid-typeof: 2
|
2015-04-28 20:03:05 +03:00
|
|
|
|
|
|
|
# Best Practices
|
|
|
|
# list: https://github.com/eslint/eslint/tree/master/docs/rules#best-practices
|
|
|
|
## require falls through comment on switch-case
|
|
|
|
no-fallthrough: 2
|
2016-01-14 03:14:28 +03:00
|
|
|
## disallow declaring the same variable more than once
|
|
|
|
no-redeclare: 2
|
2015-04-28 20:03:05 +03:00
|
|
|
|
|
|
|
# Stylistic Issues
|
|
|
|
# list: https://github.com/eslint/eslint/tree/master/docs/rules#stylistic-issues
|
|
|
|
## add space after comma
|
2015-06-28 18:42:35 +03:00
|
|
|
comma-spacing: 2
|
2016-02-08 07:57:14 +03:00
|
|
|
## require newline at end of files
|
|
|
|
eol-last: 2
|
|
|
|
## 2 space indentation
|
|
|
|
indent: [2, 2, {SwitchCase: 1}]
|
2015-04-28 20:03:05 +03:00
|
|
|
## max 80 length
|
2015-06-11 20:08:25 +03:00
|
|
|
max-len: [2, 80, 2]
|
2016-02-08 07:57:14 +03:00
|
|
|
## require parens for Constructor
|
|
|
|
new-parens: 2
|
2016-02-08 21:41:15 +03:00
|
|
|
## disallow mixed spaces and tabs for indentation
|
|
|
|
no-mixed-spaces-and-tabs: 2
|
2015-06-13 22:33:46 +03:00
|
|
|
## max 2 consecutive empty lines
|
|
|
|
no-multiple-empty-lines: [2, {max: 2}]
|
|
|
|
## no trailing spaces
|
|
|
|
no-trailing-spaces: 2
|
2016-02-08 07:57:14 +03:00
|
|
|
## use single quote, we can use double quote when escape chars
|
|
|
|
quotes: [2, "single", "avoid-escape"]
|
|
|
|
## put semi-colon
|
|
|
|
semi: 2
|
2016-01-19 05:17:39 +03:00
|
|
|
## require space after keywords, eg 'for (..)'
|
2015-08-19 02:33:11 +03:00
|
|
|
space-after-keywords: 2
|
2016-02-08 07:57:14 +03:00
|
|
|
## require space before blocks, eg 'function() {'
|
|
|
|
space-before-blocks: [2, "always"]
|
|
|
|
## no space before function, eg. 'function()'
|
|
|
|
space-before-function-paren: [2, "never"]
|
2016-01-19 05:17:39 +03:00
|
|
|
## no leading/trailing spaces in parens
|
|
|
|
space-in-parens: [2, "never"]
|
2016-02-08 07:57:14 +03:00
|
|
|
## require spaces operator like var sum = 1 + 1;
|
|
|
|
space-infix-ops: 2
|
|
|
|
## require spaces return, throw, case
|
|
|
|
space-return-throw-case: 2
|
2016-02-03 23:27:40 +03:00
|
|
|
## no spaces with non-word unary operators, require for word unary operators
|
|
|
|
space-unary-ops: 2
|
2015-04-28 20:03:05 +03:00
|
|
|
|
2015-10-08 20:40:10 +03:00
|
|
|
# ECMAScript 6
|
|
|
|
# list: http://eslint.org/docs/rules/#ecmascript-6
|
|
|
|
## Suggest using 'const' wherever possible
|
|
|
|
prefer-const: 2
|
2016-01-22 08:27:02 +03:00
|
|
|
## Enforce parens around arrow function arguments
|
|
|
|
arrow-parens: [2, "always"]
|
|
|
|
## Require a space on each side of arrow operator
|
|
|
|
arrow-spacing: [2, {"before": true, "after": true}]
|
|
|
|
## Prevent using => in a condition where <= is intended
|
|
|
|
no-arrow-condition: 2
|
2015-10-08 20:40:10 +03:00
|
|
|
|
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
|
2015-12-23 22:32:25 +03:00
|
|
|
## disallow declaration of variables that are not used in the code
|
|
|
|
no-unused-vars: [2, {"args": "none"}]
|
2015-06-11 20:08:25 +03:00
|
|
|
|
|
|
|
# Custom rules in tools/eslint-rules
|
|
|
|
require-buffer: 2
|
2015-11-08 20:53:50 +03:00
|
|
|
new-with-error: [2, "Error", "RangeError", "TypeError", "SyntaxError", "ReferenceError"]
|
|
|
|
|
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
|