-
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.
feat(update): update repo using new version of generator #110
- Loading branch information
1 parent
221484f
commit d06b255
Showing
50 changed files
with
28,591 additions
and
17,246 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,22 @@ | ||
.DS_Store | ||
node_modules/ | ||
docTemplates/ | ||
.cache/ | ||
|
||
## Sass files built on demand from Token files | ||
demo/sass/_*.scss | ||
tokens/ | ||
altImports/ | ||
## Demo support files | ||
demo/*.css | ||
demo/*.css.map | ||
|
||
## CSS built from Sass process | ||
demo/css | ||
demo/sass/tokenProperties.scss | ||
src/*.css | ||
src/_deprecated* | ||
src/*.css.map | ||
|
||
## *-css built from sass-render process | ||
*-css.js | ||
|
||
## Build on demand from npm | ||
demo/fonts | ||
|
||
## dist files | ||
dist/ | ||
build/ | ||
|
||
## Karma code coverage reports | ||
## Code coverage reports | ||
coverage/ |
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,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npx --no-install commitlint --edit "$1" |
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,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
./node_modules/.bin/npm-run-all preCommit test linters postinstall |
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,15 +1,31 @@ | ||
# standard ignore | ||
*config* | ||
*conf* | ||
LICENSE | ||
NOTICE | ||
|
||
.github/ | ||
.gitignore | ||
.eslintrc | ||
.stylelintrc | ||
.travis.yml | ||
demo/ | ||
gulpfile.js | ||
index.html | ||
polymer.json | ||
|
||
coverage/ | ||
docs/ | ||
scripts/ | ||
test/ | ||
apiExamples/ | ||
docTemplates/ | ||
demo/**/*.css | ||
demo/**/*.scss | ||
demo/**/*.html | ||
|
||
# ignore src | ||
src/**/* | ||
dist/es5.js | ||
dist/auro-*.js | ||
!dist/auro-*__bundled.js | ||
dist/style-css.js | ||
|
||
# overrides | ||
index.html | ||
|
||
# ignore src | ||
src/**/*.scss | ||
src/**/*.css |
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,9 +1,109 @@ | ||
{ | ||
"extends": "stylelint-config-recommended", | ||
"extends": ["stylelint-config-recommended", "stylelint-config-idiomatic-order", "stylelint-config-standard-scss"], | ||
"plugins": [ | ||
"stylelint-scss" | ||
], | ||
"rules": { | ||
"no-duplicate-selectors": null, | ||
"font-family-no-duplicate-names": null, | ||
"no-descending-specificity": null, | ||
"selector-type-no-unknown": null | ||
"alpha-value-notation": "number", | ||
"at-rule-empty-line-before": [ "always", { | ||
"except": [ | ||
"after-same-name", | ||
"blockless-after-same-name-blockless", | ||
"first-nested", | ||
], | ||
"ignore": [ | ||
"after-comment", | ||
"blockless-after-blockless" | ||
] | ||
} ], | ||
"at-rule-no-unknown": null, | ||
"color-function-notation": "modern", | ||
"color-named": "never", | ||
"declaration-block-no-duplicate-custom-properties": true, | ||
"declaration-block-no-duplicate-properties": true, | ||
"declaration-block-no-redundant-longhand-properties": true, | ||
"declaration-no-important": true, | ||
"font-family-name-quotes": "always-where-recommended", | ||
"font-weight-notation": "numeric", | ||
"function-url-no-scheme-relative": true, | ||
"function-url-quotes": "always", | ||
"hue-degree-notation": "angle", | ||
"max-nesting-depth": 2, | ||
"named-grid-areas-no-invalid": true, | ||
"no-empty-source": null, | ||
"no-unknown-animations": true, | ||
"no-invalid-position-at-import-rule": null, | ||
"scss/at-else-closing-brace-newline-after": "always-last-in-chain", | ||
"scss/at-else-closing-brace-space-after": "always-intermediate", | ||
"scss/at-else-empty-line-before": "never", | ||
"scss/at-else-if-parentheses-space-before": "always", | ||
"scss/at-function-parentheses-space-before": "never", | ||
"scss/at-if-closing-brace-newline-after": "always-last-in-chain", | ||
"scss/at-if-closing-brace-space-after": "always-intermediate", | ||
"scss/at-if-no-null": true, | ||
"scss/at-import-partial-extension": null, | ||
"scss/at-mixin-parentheses-space-before": "never", | ||
"scss/at-rule-conditional-no-parentheses": true, | ||
"scss/at-rule-no-unknown": true, | ||
"scss/comment-no-empty": true, | ||
"scss/declaration-nested-properties-no-divided-groups": true, | ||
"scss/dollar-variable-colon-newline-after": "always-multi-line", | ||
"scss/dollar-variable-colon-space-after": "always-single-line", | ||
"scss/dollar-variable-colon-space-before": "never", | ||
"scss/dollar-variable-empty-line-before": [ | ||
"always", | ||
{ | ||
"except": [ | ||
"first-nested", | ||
"after-dollar-variable" | ||
], | ||
"ignore": [ | ||
"after-comment", | ||
"inside-single-line-block" | ||
] | ||
} | ||
], | ||
"scss/dollar-variable-first-in-block": [ | ||
true, | ||
{ | ||
"ignore": [ | ||
"comments", | ||
"imports" | ||
] | ||
} | ||
], | ||
"scss/dollar-variable-no-missing-interpolation": true, | ||
"scss/double-slash-comment-whitespace-inside": "always", | ||
"scss/map-keys-quotes": "always", | ||
"scss/no-duplicate-dollar-variables": true, | ||
"scss/no-duplicate-mixins": true, | ||
"scss/no-global-function-names": true, | ||
"scss/operator-no-newline-after": true, | ||
"scss/operator-no-newline-before": true, | ||
"scss/operator-no-unspaced": true, | ||
"scss/selector-nest-combinators": "always", | ||
"scss/selector-no-redundant-nesting-selector": true, | ||
"selector-attribute-quotes": "always", | ||
"selector-class-pattern": "^[a-z][a-zA-Z0-9]+$", | ||
"selector-id-pattern": "^[a-z][a-zA-Z0-9]+$", | ||
"selector-max-attribute": 1, | ||
"selector-max-class": 1, | ||
"selector-max-combinators": 1, | ||
"selector-max-compound-selectors": 2, | ||
"selector-max-id": 1, | ||
"selector-max-pseudo-class": 2, | ||
"selector-max-type": 1, | ||
"selector-max-universal": 1, | ||
"selector-no-qualifying-type": true, | ||
"selector-pseudo-element-colon-notation": "single", | ||
"selector-type-no-unknown": [ | ||
true, | ||
{ | ||
"ignore": [ | ||
"custom-elements" | ||
] | ||
} | ||
], | ||
"shorthand-property-no-redundant-values": true | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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,2 +1,2 @@ | ||
Alaska Airlines Auro Design System | ||
Copyright 2020 Alaska Airlines, Inc. or its affiliates. All Rights Reserved. | ||
Copyright 2023 Alaska Airlines, Inc. or its affiliates. All Rights Reserved. |
Oops, something went wrong.