mirror of
https://github.com/necolas/normalize.css.git
synced 2024-12-06 04:04:21 +00:00
Update project configuration
This commit is contained in:
parent
aef06ef3f3
commit
3123b8e9f5
12
.editorconfig
Normal file
12
.editorconfig
Normal file
@ -0,0 +1,12 @@
|
||||
root = true
|
||||
|
||||
[*]
|
||||
charset = utf-8
|
||||
end_of_line = lf
|
||||
indent_size = 2
|
||||
indent_style = space
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
|
||||
[*.md]
|
||||
trim_trailing_whitespace = false
|
34
.stylelintrc
34
.stylelintrc
@ -1,34 +0,0 @@
|
||||
{
|
||||
"rules": {
|
||||
"block-closing-brace-newline-after": "always",
|
||||
"block-closing-brace-newline-before": "always",
|
||||
"block-no-empty": true,
|
||||
"block-opening-brace-newline-after": "always",
|
||||
"block-opening-brace-space-before": "always",
|
||||
"color-hex-case": "lower",
|
||||
"color-hex-length": "short",
|
||||
"color-no-invalid-hex": true,
|
||||
"comment-empty-line-before": "always",
|
||||
"comment-whitespace-inside": "always",
|
||||
"declaration-block-no-single-line": true,
|
||||
"declaration-block-semicolon-newline-after": "always",
|
||||
"declaration-block-semicolon-space-before": "never",
|
||||
"declaration-colon-space-after": "always",
|
||||
"declaration-colon-space-before": "never",
|
||||
"indentation": 2,
|
||||
"max-empty-lines": 1,
|
||||
"max-line-length": 80,
|
||||
"no-eol-whitespace": true,
|
||||
"no-missing-eof-newline": true,
|
||||
"number-leading-zero": "always",
|
||||
"number-no-trailing-zeros": true,
|
||||
"rule-trailing-semicolon": "always",
|
||||
"selector-combinator-space-after": "always",
|
||||
"selector-combinator-space-before": "always",
|
||||
"selector-list-comma-newline-after": "always",
|
||||
"selector-list-comma-space-before": "never",
|
||||
"string-quotes": "double",
|
||||
"value-list-comma-space-after": "always",
|
||||
"value-list-comma-space-before": "never"
|
||||
}
|
||||
}
|
17
bower.json
Normal file
17
bower.json
Normal file
@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "normalize-css",
|
||||
"description": "A modern alternative to CSS resets",
|
||||
"main": "normalize.css",
|
||||
"authors": [
|
||||
"Jonathan Neal <jonathantneal@hotmail.com> (http://jonathantneal.com/)",
|
||||
"Nicolas Gallagher <nicolas@nicolasgallagher.com> (http://nicolasgallagher.com/)"
|
||||
],
|
||||
"license": "MIT",
|
||||
"ignore": [
|
||||
"CHANGELOG.md",
|
||||
"CONTRIBUTING.md",
|
||||
"package.json",
|
||||
"README.md",
|
||||
"test.html"
|
||||
]
|
||||
}
|
24
package.json
24
package.json
@ -1,24 +1,28 @@
|
||||
{
|
||||
"name": "normalize.css",
|
||||
"version": "3.0.3",
|
||||
"description": "Normalize.css as a node packaged module",
|
||||
"description": "A modern alternative to CSS resets",
|
||||
"style": "normalize.css",
|
||||
"files": [
|
||||
"LICENSE.md",
|
||||
"normalize.css"
|
||||
],
|
||||
"homepage": "http://necolas.github.io/normalize.css",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/necolas/normalize.css.git"
|
||||
},
|
||||
"main": "normalize.css",
|
||||
"author": "Nicolas Gallagher",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"stylelint": "^4.2.0"
|
||||
"stylelint": "^5.1.0",
|
||||
"stylelint-config-standard": "^4.0.1"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "stylelint normalize.css"
|
||||
},
|
||||
"repository": "necolas/normalize.css",
|
||||
"contributors": [
|
||||
"Jonathan Neal <jonathantneal@hotmail.com> (http://jonathantneal.com/)",
|
||||
"Nicolas Gallagher <nicolas@nicolasgallagher.com> (http://nicolasgallagher.com/)"
|
||||
],
|
||||
"license": "MIT",
|
||||
"bugs": "https://github.com/necolas/normalize.css/issues",
|
||||
"homepage": "https://necolas.github.io/normalize.css#readme",
|
||||
"stylelint": {
|
||||
"extends": "stylelint-config-standard"
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user