Revision 23a127b1a47e75342ef4376c16164dc6134e1628 authored by Sean Larkin on 29 November 2016, 05:15:56 UTC, committed by Tobias Koppers on 07 December 2016, 16:22:18 UTC
1 parent 785cfd5
Raw File
.eslintrc
{
	"root": true,
	"extends": [
		"eslint:recommended"
	],
	"env": {
		"node": true
	},
	"rules": {
		"strict": 0,
		"camelcase": 0,
		"curly": 0,
		"indent": [2, "tab", { "SwitchCase": 1 }],
		"eol-last": 1,
		"no-shadow": 0,
		"no-redeclare": 2,
		"no-extra-bind": 1,
		"no-empty": 0,
		"no-process-exit": 1,
		"no-underscore-dangle": 0,
		"no-use-before-define": 0,
		"no-undef": 2,
		"no-unused-vars": 0,
		"consistent-return": 0,
		"no-inner-declarations": 1,
		"no-loop-func": 1,
		"space-before-function-paren": [2, "never"],
		"space-before-blocks": [2, "always"],
		"space-before-keywords": [2, "always"],
		"no-console": 0,
		"comma-dangle": 0,
		"no-unexpected-multiline": 2,
		"valid-jsdoc": 2
	}
}
back to top