Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.eslintrc « object-keys « node_modules « npm « deps - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9a8d5b0e95e3615753a24220256ddc671ac2cedc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
	"root": true,

	"extends": "@ljharb",

	"rules": {
		"complexity": [2, 23],
		"id-length": [2, { "min": 1, "max": 40 }],
		"max-params": [2, 3],
		"max-statements": [2, 23],
		"max-statements-per-line": [2, { "max": 2 }],
		"no-extra-parens": [1],
		"no-invalid-this": [1],
		"no-restricted-syntax": [2, "BreakStatement", "ContinueStatement", "LabeledStatement", "WithStatement"],
		"operator-linebreak": [2, "after"]
	}
}