Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create .stylelintrc #18

Merged
merged 2 commits into from Apr 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
96 changes: 96 additions & 0 deletions .stylelintrc
@@ -0,0 +1,96 @@
{
"extends": "stylelint-config-recommended",
"rules":
{
"at-rule-empty-line-before":
[
"always",
{
except: ["blockless-after-same-name-blockless", "first-nested"],
ignore: ["after-comment"],
},
],
"at-rule-name-case": "lower",
"at-rule-name-space-after": "always-single-line",
"at-rule-semicolon-newline-after": "always",
"block-closing-brace-empty-line-before": "never",
"block-closing-brace-newline-after": "always",
"block-closing-brace-newline-before": "always-multi-line",
"block-closing-brace-space-before": "always-single-line",
"block-opening-brace-newline-after": "always-multi-line",
"block-opening-brace-space-after": "always-single-line",
"block-opening-brace-space-before": "always",
"color-hex-case": "lower",
"color-hex-length": "short",
"comment-whitespace-inside": "always",
"custom-property-empty-line-before":
[
"always",
{
except: ["after-custom-property", "first-nested"],
ignore: ["after-comment", "inside-single-line-block"],
},
],
"declaration-bang-space-after": "never",
"declaration-bang-space-before": "always",
"declaration-block-semicolon-newline-after": "always-multi-line",
"declaration-block-semicolon-space-after": "always-single-line",
"declaration-block-semicolon-space-before": "never",
"declaration-block-single-line-max-declarations": 1,
"declaration-block-trailing-semicolon": "always",
"declaration-colon-newline-after": "always-multi-line",
"declaration-colon-space-after": "always-single-line",
"declaration-colon-space-before": "never",
"declaration-empty-line-before":
[
"always",
{
except: ["after-declaration", "first-nested"],
ignore: ["after-comment", "inside-single-line-block"],
},
],
"function-comma-newline-after": "always-multi-line",
"function-comma-space-after": "always-single-line",
"function-comma-space-before": "never",
"function-max-empty-lines": 0,
"function-name-case": "lower",
"function-parentheses-newline-inside": "always-multi-line",
"function-parentheses-space-inside": "never-single-line",
"function-whitespace-after": "always",
"indentation": 2,
"length-zero-no-unit": true,
"max-empty-lines": 1,
"media-feature-colon-space-after": "always",
"media-feature-colon-space-before": "never",
"media-feature-name-case": "lower",
"media-feature-parentheses-space-inside": "never",
"media-feature-range-operator-space-after": "always",
"media-feature-range-operator-space-before": "always",
"media-query-list-comma-newline-after": "always-multi-line",
"media-query-list-comma-space-after": "always-single-line",
"media-query-list-comma-space-before": "never",
"no-eol-whitespace": true,
"no-missing-end-of-source-newline": true,
"number-leading-zero": "always",
"number-no-trailing-zeros": true,
"property-case": "lower",
"selector-attribute-brackets-space-inside": "never",
"selector-attribute-operator-space-after": "never",
"selector-attribute-operator-space-before": "never",
"selector-combinator-space-after": "always",
"selector-combinator-space-before": "always",
"selector-descendant-combinator-no-non-space": true,
"selector-list-comma-newline-after": "always",
"selector-list-comma-space-before": "never",
"selector-max-empty-lines": 0,
"selector-pseudo-class-case": "lower",
"selector-pseudo-class-parentheses-space-inside": "never",
"selector-pseudo-element-case": "lower",
"selector-type-case": "lower",
"unit-case": "lower",
"value-list-comma-newline-after": "always-multi-line",
"value-list-comma-space-after": "always-single-line",
"value-list-comma-space-before": "never",
"value-list-max-empty-lines": 0,
},
}
4 changes: 2 additions & 2 deletions dist/_helpers.css
Expand Up @@ -28,8 +28,8 @@
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
white-space: nowrap;
width: 1px;
/* 1 */
}

Expand All @@ -46,8 +46,8 @@
margin: 0;
overflow: visible;
position: static;
width: auto;
white-space: inherit;
width: auto;
}

/*
Expand Down
6 changes: 3 additions & 3 deletions dist/_mqs.css
Expand Up @@ -10,8 +10,8 @@
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
/* Style adjustments for high resolution devices */
}
1 change: 0 additions & 1 deletion dist/_print.css
Expand Up @@ -12,7 +12,6 @@
background: transparent !important;
color: #000 !important;
/* Black prints faster */
-webkit-box-shadow: none !important;
box-shadow: none !important;
text-shadow: none !important;
}
Expand Down
41 changes: 10 additions & 31 deletions dist/main.css
Expand Up @@ -5,7 +5,7 @@
* Kroc Camen, and the H5BP dev community and team.
*/

/* ==========================================================================
/* ==========================================================================
Base styles: opinionated defaults
========================================================================== */

Expand All @@ -25,11 +25,6 @@ html {
* Customize the background color to match your design.
*/

::-moz-selection {
background: #b3d4fc;
text-shadow: none;
}

::selection {
background: #b3d4fc;
text-shadow: none;
Expand Down Expand Up @@ -92,26 +87,11 @@ textarea {
padding: 0.2em 0;
}

/* ==========================================================================
/* ==========================================================================
Author's custom styles
========================================================================== */
















/* ==========================================================================
/* ==========================================================================
Helper classes
========================================================================== */

Expand Down Expand Up @@ -140,8 +120,8 @@ textarea {
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
white-space: nowrap;
width: 1px;
/* 1 */
}

Expand All @@ -158,8 +138,8 @@ textarea {
margin: 0;
overflow: visible;
position: static;
width: auto;
white-space: inherit;
width: auto;
}

/*
Expand Down Expand Up @@ -194,7 +174,7 @@ textarea {
clear: both;
}

/* ==========================================================================
/* ==========================================================================
EXAMPLE Media Queries for Responsive Design.
These examples override the primary ('mobile first') styles.
Modify as content requires.
Expand All @@ -205,13 +185,13 @@ textarea {
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
/* Style adjustments for high resolution devices */
}

/* ==========================================================================
/* ==========================================================================
Print styles.
Inlined to avoid the additional HTTP request:
https://www.phpied.com/delay-loading-your-print-css/
Expand Down Expand Up @@ -277,4 +257,3 @@ textarea {
}
}


3 changes: 2 additions & 1 deletion package.json
Expand Up @@ -30,7 +30,8 @@
"gulp-autoprefixer": "^6.0.0",
"gulp-cssimport": "^7.0.0",
"gulp-header": "^2.0.7",
"gulp-load-plugins": "^1.5.0"
"gulp-load-plugins": "^1.5.0",
"stylelint-config-recommended": "^2.1.0"
},
"babel": {
"presets": [
Expand Down
15 changes: 0 additions & 15 deletions src/_custom.css
@@ -1,18 +1,3 @@
/* ==========================================================================
Author's custom styles
========================================================================== */















6 changes: 3 additions & 3 deletions src/_mqs.css
Expand Up @@ -9,8 +9,8 @@
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
/* Style adjustments for high resolution devices */
}
1 change: 0 additions & 1 deletion src/_print.css
Expand Up @@ -11,7 +11,6 @@
background: transparent !important;
color: #000 !important;
/* Black prints faster */
-webkit-box-shadow: none !important;
box-shadow: none !important;
text-shadow: none !important;
}
Expand Down
11 changes: 5 additions & 6 deletions src/main.css
Expand Up @@ -4,9 +4,8 @@
* Kroc Camen, and the H5BP dev community and team.
*/

@import url(_base.css);
@import url(_custom.css);
@import url(_helpers.css);
@import url(_mqs.css);
@import url(_print.css);

@import url(_base.css);
@import url(_custom.css);
@import url(_helpers.css);
@import url(_mqs.css);
@import url(_print.css);