Skip to content

Commit f3b1e94

Browse files
committed
Introduce .editorconfig file
1 parent 290e43b commit f3b1e94

File tree

2 files changed

+60
-44
lines changed

2 files changed

+60
-44
lines changed

.editorconfig

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# http://editorconfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
[*]
7+
indent_style = space
8+
indent_size = 4
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.json]
13+
indent_size = 2
14+
15+
[*.yml]
16+
indent_size = 2

package.json

+44-44
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,46 @@
11
{
2-
"name": "typescript",
3-
"author": "Microsoft Corp.",
4-
"homepage": "http://typescriptlang.org/",
5-
"version": "1.3.0",
6-
"licenses": [
7-
{
8-
"type": "Apache License 2.0",
9-
"url": "https://github.com/Microsoft/TypeScript/blob/master/LICENSE.txt"
10-
}
11-
],
12-
"description": "TypeScript is a language for application scale JavaScript development",
13-
"keywords": [
14-
"TypeScript",
15-
"Microsoft",
16-
"compiler",
17-
"language",
18-
"javascript"
19-
],
20-
"bugs": {
21-
"url" : "https://github.com/Microsoft/TypeScript/issues"
22-
},
23-
"repository" : {
24-
"type" : "git",
25-
"url" : "https://github.com/Microsoft/TypeScript.git"
26-
},
27-
"preferGlobal" : true,
28-
"main" : "./bin/tsc.js",
29-
"bin" : {
30-
"tsc" : "./bin/tsc"
31-
},
32-
"engines" : {
33-
"node" : ">=0.8.0"
34-
},
35-
"devDependencies": {
36-
"jake" : "latest",
37-
"mocha" : "latest",
38-
"chai" : "latest",
39-
"browserify" : "latest",
40-
"istanbul": "latest",
41-
"codeclimate-test-reporter": "latest"
42-
},
43-
"scripts": {
44-
"test": "jake generate-code-coverage"
45-
}
2+
"name": "typescript",
3+
"author": "Microsoft Corp.",
4+
"homepage": "http://typescriptlang.org/",
5+
"version": "1.3.0",
6+
"licenses": [
7+
{
8+
"type": "Apache License 2.0",
9+
"url": "https://github.com/Microsoft/TypeScript/blob/master/LICENSE.txt"
10+
}
11+
],
12+
"description": "TypeScript is a language for application scale JavaScript development",
13+
"keywords": [
14+
"TypeScript",
15+
"Microsoft",
16+
"compiler",
17+
"language",
18+
"javascript"
19+
],
20+
"bugs": {
21+
"url": "https://github.com/Microsoft/TypeScript/issues"
22+
},
23+
"repository": {
24+
"type": "git",
25+
"url": "https://github.com/Microsoft/TypeScript.git"
26+
},
27+
"preferGlobal": true,
28+
"main": "./bin/tsc.js",
29+
"bin": {
30+
"tsc": "./bin/tsc"
31+
},
32+
"engines": {
33+
"node": ">=0.8.0"
34+
},
35+
"devDependencies": {
36+
"browserify": "latest",
37+
"chai": "latest",
38+
"codeclimate-test-reporter": "latest",
39+
"istanbul": "latest",
40+
"jake": "latest",
41+
"mocha": "latest"
42+
},
43+
"scripts": {
44+
"test": "jake generate-code-coverage"
45+
}
4646
}

0 commit comments

Comments
 (0)