Skip to:
Content

bbPress.org

Changeset 6028


Ignore:
Timestamp:
05/20/2016 07:08:58 AM (9 years ago)
Author:
netweb
Message:

Build Tools: Update stylelint to 6.4.2

See #2924

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/.stylelintrc

    r5995 r6028  
    55    ignore: ["after-comment"],
    66  } ],
     7  "at-rule-name-case": "lower",
     8  "at-rule-name-space-after": "always-single-line",
    79  "at-rule-semicolon-newline-after": "always",
    810  "block-closing-brace-newline-after": "always",
     
    1618  "declaration-bang-space-after": "never",
    1719  "declaration-bang-space-before": "always",
     20  "declaration-block-no-duplicate-properties": [ true, {
     21    ignore: ["consecutive-duplicates"],
     22  } ],
    1823  "declaration-block-no-shorthand-property-overrides": true,
    1924  "declaration-block-semicolon-newline-after": "always",
     
    2833  "function-comma-space-before": "never",
    2934  "function-linear-gradient-no-nonstandard-direction": true,
     35  "function-max-empty-lines": 1,
     36  "function-name-case": "lower",
    3037  "function-parentheses-space-inside": "never",
    3138  "function-url-quotes": "none",
    3239  "function-whitespace-after": "always",
    3340  "indentation": "tab",
     41  "keyframe-declaration-no-important": true,
    3442  "max-empty-lines": 2,
    3543  "media-feature-colon-space-after": "always",
     
    4250  "media-query-list-comma-space-before": "never",
    4351  "no-eol-whitespace": true,
     52  "no-extra-semicolons": true,
    4453  "no-invalid-double-slash-comments": true,
    4554  "no-missing-eof-newline": true,
     
    4756  "number-no-trailing-zeros": true,
    4857  "number-zero-length-no-unit": true,
     58  "property-case": "lower",
    4959  "rule-nested-empty-line-before": [ "always", {
    5060    ignore: ["after-comment"],
     
    5363    ignore: ["after-comment"],
    5464  } ],
     65  "selector-attribute-brackets-space-inside": "never",
     66  "selector-attribute-operator-space-after": "never",
     67  "selector-attribute-operator-space-before": "never",
    5568  "selector-combinator-space-after": "always",
    5669  "selector-combinator-space-before": "always",
    5770  "selector-list-comma-newline-after": "always",
    5871  "selector-list-comma-space-before": "never",
     72  "selector-max-empty-lines": 0,
     73  "selector-pseudo-class-case": "lower",
     74  "selector-pseudo-class-no-unknown": true,
     75  "selector-pseudo-class-parentheses-space-inside": "never",
     76  "selector-pseudo-element-case": "lower",
    5977  "selector-pseudo-element-colon-notation": "single",
     78  "selector-pseudo-element-no-unknown": true,
    6079  "selector-type-case": "lower",
     80  "selector-type-no-unknown": true,
     81  "shorthand-property-no-redundant-values": true,
    6182  "string-no-newline": true,
    6283  "string-quotes": "double",
     84  "unit-case": "lower",
     85  "unit-no-unknown": true,
    6386  "value-list-comma-newline-after": "always-multi-line",
    6487  "value-list-comma-space-after": "always-single-line",
  • trunk/package.json

    r6000 r6028  
    2727    "postcss-reporter": "~1.3.3",
    2828    "postcss-scss": "~0.1.7",
    29     "stylelint": "~5.3.0"
     29    "stylelint": "^6.4.2"
    3030  },
    3131  "engines": {
  • trunk/src/templates/default/css/bbpress.css

    r5995 r6028  
    1010
    1111#bbpress-forums hr {
    12     margin: 0 0 24px 0;
     12    margin: 0 0 24px;
    1313}
    1414
     
    196196    max-width: 80px;
    197197    padding: 0;
    198     margin: 12px auto 0 auto;
     198    margin: 12px auto 0;
    199199    float: none;
    200200}
     
    556556#bbpress-forums p.bbp-topic-meta {
    557557    font-size: 11px;
    558     margin: 5px 0 5px;
     558    margin: 5px 0;
    559559    padding: 0;
    560560    word-wrap: break-word;
     
    787787
    788788#bbpress-forums #bbp-your-profile fieldset {
    789     padding: 20px 20px 0 20px;
     789    padding: 20px 20px 0;
    790790}
    791791
     
    935935div.bbp-template-notice p,
    936936div.bbp-template-notice li {
    937     margin: 0.5em 0 6px 0 !important;
     937    margin: 0.5em 0 6px !important;
    938938    padding: 2px;
    939939    font-size: 12px;
     
    961961    width: 100%;
    962962    margin: 0;
    963     padding: 8px 0 0 0;
     963    padding: 8px 0 0;
    964964    font-size: 11px;
    965965    color: #aaa;
     
    11091109    height: 150px;
    11101110    padding: 0;
    1111     margin: 0 0 20px 0;
     1111    margin: 0 0 20px;
    11121112    width: 150px;
    11131113}
Note: See TracChangeset for help on using the changeset viewer.