mirror of
https://github.com/marcobiedermann/search-engine-optimization.git
synced 2025-10-05 17:38:35 -04:00
chore: Stylelint
add Stylelint
This commit is contained in:
parent
3631224272
commit
e6f6495581
7 changed files with 3417 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -19,3 +19,4 @@ nbproject
|
|||
_site
|
||||
.jekyll-metadata
|
||||
.sass-cache
|
||||
node_modules
|
||||
|
|
4
.prettierignore
Normal file
4
.prettierignore
Normal file
|
@ -0,0 +1,4 @@
|
|||
_site
|
||||
.jekyll-metadata
|
||||
.sass-cache
|
||||
node_modules
|
5
.prettierrc
Normal file
5
.prettierrc
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"printWidth": 120,
|
||||
"singleQuote": true,
|
||||
"trailingComma": "all"
|
||||
}
|
4
.stylelintignore
Normal file
4
.stylelintignore
Normal file
|
@ -0,0 +1,4 @@
|
|||
_site
|
||||
.jekyll-metadata
|
||||
.sass-cache
|
||||
node_modules
|
12
.stylelintrc
Normal file
12
.stylelintrc
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"extends": [
|
||||
"stylelint-config-prettier",
|
||||
"stylelint-config-standard"
|
||||
],
|
||||
"plugins": [
|
||||
"stylelint-order"
|
||||
],
|
||||
"rules": {
|
||||
"order/properties-alphabetical-order": true
|
||||
}
|
||||
}
|
3359
package-lock.json
generated
Normal file
3359
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
32
package.json
Normal file
32
package.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "search-engine-optimization",
|
||||
"version": "1.0.0",
|
||||
"description": "[](https://github.com/sindresorhus/awesome) [](https://gitter.im/marcobiedermann/search-engine-optimization)",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"fix:css": "npm run lint:css -- --fix",
|
||||
"fix": "npm run fix:css",
|
||||
"format": "prettier --write '**/*.{css,html,js,json,md,scss,yml,yaml}'",
|
||||
"lint:css": "stylelint '**/*.{css,scss}'",
|
||||
"lint": "npm run lint:css",
|
||||
"test": "npm run lint"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/marcobiedermann/search-engine-optimization.git"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://github.com/marcobiedermann/search-engine-optimization/issues"
|
||||
},
|
||||
"homepage": "https://github.com/marcobiedermann/search-engine-optimization#readme",
|
||||
"devDependencies": {
|
||||
"prettier": "^1.18.2",
|
||||
"stylelint": "^10.1.0",
|
||||
"stylelint-config-prettier": "^5.2.0",
|
||||
"stylelint-config-standard": "^18.3.0",
|
||||
"stylelint-order": "^3.0.0"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue