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: 7c749e70f4cd619f658f6b2ef1aff01ff3cdd51a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
	"rules": {
		"no-unused-expression": true,
		"no-duplicate-variable": true,
		"no-duplicate-key": true,
		"no-unused-variable": true,
		"curly": true,
		"class-name": true,
		"semicolon": ["always"],
		"triple-equals": true,
		"no-unexternalized-strings": [
			true,
			{
				"signatures": ["localize", "nls.localize"],
				"keyIndex": 0,
				"messageIndex": 1
			}
		]
	}
}