-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #94 from oddbird/modules
Modules
- Loading branch information
Showing
269 changed files
with
12,198 additions
and
91,006 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
**/.DS_Store | ||
*.log | ||
.sass-cache | ||
.vscode | ||
docs | ||
node_modules | ||
.nvmrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v16.13.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
!.* | ||
.git/ | ||
.vscode/ | ||
.yarn/ | ||
.yarnrc | ||
docs/ | ||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
singleQuote: true | ||
trailingComma: all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
!.* | ||
.git/ | ||
.vscode/ | ||
.yarn/ | ||
.yarnrc | ||
docs/ | ||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,69 +1,40 @@ | ||
# See https://stylelint.io/user-guide/rules/list | ||
# Also https://github.com/kristerkari/stylelint-scss#list-of-rules | ||
# ------------------------------------------------------------------------------- | ||
|
||
extends: stylelint-config-recommended-scss | ||
extends: | ||
- stylelint-config-standard-scss | ||
- stylelint-prettier/recommended | ||
plugins: | ||
- stylelint-prettier | ||
|
||
rules: | ||
# Default rules: | ||
# - https://github.com/stylelint-scss/stylelint-config-standard-scss/blob/main/index.js | ||
# - https://github.com/stylelint-scss/stylelint-config-recommended-scss/blob/master/index.js | ||
# - https://github.com/stylelint/stylelint-config-standard/blob/main/index.js | ||
# - https://github.com/stylelint/stylelint-config-recommended/blob/main/index.js | ||
# - https://github.com/prettier/stylelint-config-prettier/blob/master/src/index.js | ||
|
||
# possible errors (these are all on by default) | ||
no-descending-specificity: null | ||
|
||
# limit language features | ||
at-rule-no-vendor-prefix: true | ||
color-function-notation: null | ||
color-named: always-where-possible | ||
declaration-block-no-redundant-longhand-properties: | ||
- true | ||
- ignoreShorthands: | ||
- grid-template | ||
declaration-block-single-line-max-declarations: 1 | ||
custom-property-pattern: null | ||
declaration-no-important: true | ||
function-url-no-scheme-relative: true | ||
media-feature-name-no-vendor-prefix: true | ||
property-no-vendor-prefix: true | ||
selector-max-empty-lines: 0 | ||
selector-no-vendor-prefix: true | ||
shorthand-property-no-redundant-values: true | ||
value-no-vendor-prefix: true | ||
number-max-precision: null | ||
selector-class-pattern: null | ||
|
||
# stylistic issues | ||
at-rule-name-case: lower | ||
at-rule-name-space-after: always | ||
at-rule-semicolon-space-before: never | ||
color-hex-case: lower | ||
color-hex-length: short | ||
comment-whitespace-inside: always | ||
declaration-bang-space-after: never | ||
declaration-bang-space-before: always | ||
font-family-name-quotes: always-unless-keyword | ||
font-weight-notation: named-where-possible | ||
function-max-empty-lines: 1 | ||
function-name-case: lower | ||
function-url-quotes: always | ||
indentation: null | ||
length-zero-no-unit: true | ||
max-empty-lines: 2 | ||
media-feature-colon-space-after: always | ||
media-feature-colon-space-before: never | ||
media-feature-name-case: lower | ||
media-feature-parentheses-space-inside: never | ||
media-query-list-comma-space-after: always | ||
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-quotes: always | ||
selector-combinator-space-after: always | ||
selector-combinator-space-before: always | ||
selector-descendant-combinator-no-non-space: true | ||
selector-list-comma-newline-after: always | ||
selector-pseudo-class-case: lower | ||
selector-pseudo-class-parentheses-space-inside: never | ||
selector-pseudo-element-case: lower | ||
selector-pseudo-element-colon-notation: double | ||
selector-type-case: lower | ||
unit-case: lower | ||
value-keyword-case: lower | ||
value-list-max-empty-lines: 1 | ||
# Sass | ||
scss/at-function-pattern: | ||
- '^([_|-]*[a-z][a-z0-9]*)(-[a-z0-9]+)*-*$' | ||
- message: 'Expected function to be kebab-case' | ||
scss/at-mixin-pattern: | ||
- '^([_|-]*[a-z][a-z0-9]*)(-[a-z0-9]+)*-*$' | ||
- message: 'Expected mixin to be kebab-case' | ||
scss/at-rule-conditional-no-parentheses: null | ||
scss/dollar-variable-pattern: | ||
- '^([_|-]*[a-z][a-z0-9]*)(-[a-z0-9]+)*-*$' | ||
- message: 'Expected variable to be kebab-case' |
Oops, something went wrong.