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

tslint.json - github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4ea88cdbb9ba08f69b097cacee144ee433426fa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
	"rules": {
		"no-unused-expression": true,
		"no-unreachable": true,
		"no-duplicate-variable": true,
		"no-duplicate-key": true,
		"no-unused-variable": true,
		"curly": true,
		"class-name": true,
		"semicolon": true,
		"triple-equals": true,
		"no-unexternalized-strings": [
			true,
			{
				"signatures": ["localize", "nls.localize"],
				"keyIndex": 0,
				"messageIndex": 1
			}
		]
	}
}