Skip to content

Commit 3123b8e

Browse files
author
Jonathan Neal
committed
Update project configuration
1 parent aef06ef commit 3123b8e

File tree

4 files changed

+43
-44
lines changed

4 files changed

+43
-44
lines changed

.editorconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
indent_size = 2
7+
indent_style = space
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false

.stylelintrc

Lines changed: 0 additions & 34 deletions
This file was deleted.

bower.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "normalize-css",
3+
"description": "A modern alternative to CSS resets",
4+
"main": "normalize.css",
5+
"authors": [
6+
"Jonathan Neal <jonathantneal@hotmail.com> (http://jonathantneal.com/)",
7+
"Nicolas Gallagher <nicolas@nicolasgallagher.com> (http://nicolasgallagher.com/)"
8+
],
9+
"license": "MIT",
10+
"ignore": [
11+
"CHANGELOG.md",
12+
"CONTRIBUTING.md",
13+
"package.json",
14+
"README.md",
15+
"test.html"
16+
]
17+
}

package.json

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,28 @@
11
{
22
"name": "normalize.css",
33
"version": "3.0.3",
4-
"description": "Normalize.css as a node packaged module",
4+
"description": "A modern alternative to CSS resets",
55
"style": "normalize.css",
66
"files": [
77
"LICENSE.md",
88
"normalize.css"
99
],
10-
"homepage": "http://necolas.github.io/normalize.css",
11-
"repository": {
12-
"type": "git",
13-
"url": "git://github.com/necolas/normalize.css.git"
14-
},
15-
"main": "normalize.css",
16-
"author": "Nicolas Gallagher",
17-
"license": "MIT",
1810
"devDependencies": {
19-
"stylelint": "^4.2.0"
11+
"stylelint": "^5.1.0",
12+
"stylelint-config-standard": "^4.0.1"
2013
},
2114
"scripts": {
2215
"test": "stylelint normalize.css"
16+
},
17+
"repository": "necolas/normalize.css",
18+
"contributors": [
19+
"Jonathan Neal <jonathantneal@hotmail.com> (http://jonathantneal.com/)",
20+
"Nicolas Gallagher <nicolas@nicolasgallagher.com> (http://nicolasgallagher.com/)"
21+
],
22+
"license": "MIT",
23+
"bugs": "https://github.com/necolas/normalize.css/issues",
24+
"homepage": "https://necolas.github.io/normalize.css#readme",
25+
"stylelint": {
26+
"extends": "stylelint-config-standard"
2327
}
2428
}

0 commit comments

Comments
 (0)