Skip to content

Commit

Permalink
Merge pull request #13 from michisp/master
Browse files Browse the repository at this point in the history
Bump to 3.0.0
  • Loading branch information
boriskaiser committed Feb 4, 2019
2 parents f3a1654 + 834ace1 commit db437e9
Show file tree
Hide file tree
Showing 8 changed files with 3,658 additions and 2,773 deletions.
6 changes: 0 additions & 6 deletions .codeclimate.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.9.1
8.10.0
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# stylelint Config superReal Changelog

## 3.0.0 (23/01/19)

### Major

- Update stylelint dev dependency `^8.4.0``^9.10.1`
- Add new stylelint rules with null value
- Update node version to `8.10.0`

### Minor

- Remove eslint dev dependency
- Remove eslint-config-superreal dev dependency
- Remove eslint-plugin-import dev dependency
- Remove pre-commit dev dependency
- Remove .codeclimate.xml file
- Remove pre-commit.sh file
- Add engines to package.json


## Next (20/12/17)

- stylelint 8 compatibility
Expand Down
17 changes: 16 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ module.exports = {
/* Font family */
'font-family-name-quotes': 'always-where-recommended',
'font-family-no-duplicate-names': true,
'font-family-no-missing-generic-family-keyword': null,

/* Font weight */
'font-weight-notation': 'named-where-possible',
Expand All @@ -24,6 +25,7 @@ module.exports = {
'function-comma-space-after': null,
'function-comma-space-before': 'never',
'function-linear-gradient-no-nonstandard-direction': true,
'function-calc-no-invalid': null,
'function-max-empty-lines': 0,
'function-name-case': 'lower',
'function-parentheses-newline-inside': null,
Expand All @@ -34,6 +36,9 @@ module.exports = {
'function-whitelist': null,
'function-whitespace-after': 'always',

/* Keyframes */
'keyframes-name-pattern': null,

/* Number */
'number-leading-zero': 'never',
'number-max-precision': 3,
Expand Down Expand Up @@ -140,9 +145,11 @@ module.exports = {
'selector-attribute-operator-space-before': 'never',
'selector-attribute-operator-whitelist': null,
'selector-attribute-quotes': 'never',
'selector-class-pattern': '^[0-9a-zA-Z_\.\-]+$', // eslint-disable-line
'selector-class-pattern': '^[0-9a-zA-Z_\.\-]+$',
'selector-combinator-space-after': 'always',
'selector-combinator-space-before': 'always',
'selector-combinator-blacklist': null,
'selector-combinator-whitelist': null,
'selector-descendant-combinator-no-non-space': true,
'selector-id-pattern': '^$',
'selector-max-compound-selectors': 5,
Expand All @@ -158,13 +165,17 @@ module.exports = {
'selector-pseudo-class-case': 'lower',
'selector-pseudo-class-no-unknown': true,
'selector-pseudo-class-parentheses-space-inside': 'never',
'selector-pseudo-class-blacklist': null,
'selector-pseudo-class-whitelist': null,
'selector-pseudo-element-case': 'lower',
'selector-pseudo-element-colon-notation': 'double',
'selector-pseudo-element-no-unknown': true,
'selector-pseudo-element-blacklist': null,
'selector-pseudo-element-whitelist': null,
'selector-type-case': 'lower',
'selector-type-no-unknown': true,
'selector-max-empty-lines': 1,
'selector-max-pseudo-class': null,

/* Selector list */
'selector-list-comma-newline-after': 'always',
Expand All @@ -179,6 +190,7 @@ module.exports = {
'media-feature-name-case': 'lower',
'media-feature-name-no-unknown': true,
'media-feature-name-no-vendor-prefix': true,
'media-feature-name-value-whitelist': null,
'media-feature-name-whitelist': null,
'media-feature-range-operator-space-after': 'always',
'media-feature-range-operator-space-before': 'never',
Expand Down Expand Up @@ -219,16 +231,19 @@ module.exports = {
],
},
],
'linebreaks': null,
'max-empty-lines': 2,
'max-line-length': 120,
'max-nesting-depth': 5,
'no-descending-specificity': true,
'no-duplicate-at-import-rules': null,
'no-duplicate-selectors': true,
'no-empty-source': true,
'no-eol-whitespace': true,
'no-extra-semicolons': true,
'no-invalid-double-slash-comments': true,
'no-missing-end-of-source-newline': true,
'no-empty-first-line': null,
'no-unknown-animations': true,
},
};

0 comments on commit db437e9

Please sign in to comment.