@thegetty/quire-cli 0.20.3 → 0.20.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +46 -0
- package/bin/.DS_Store +0 -0
- package/bin/go-iiif/.DS_Store +0 -0
- package/bin/index.js +2 -0
- package/bin/starters/.DS_Store +0 -0
- package/bin/starters/README.md +0 -0
- package/bin/starters/default/.circleci/config.yml +98 -0
- package/bin/starters/default/.gitignore +14 -0
- package/bin/starters/default/.nojekyll +0 -0
- package/bin/starters/default/CHANGELOG.md +38 -0
- package/bin/starters/default/README.md +25 -0
- package/bin/starters/default/bin/deploy.sh +25 -0
- package/bin/starters/default/config/_default/config.yml +53 -0
- package/bin/starters/default/config/development/config.yml +14 -0
- package/bin/starters/default/config/environments/dev.yml +14 -0
- package/bin/starters/default/config/environments/github.yml +15 -0
- package/bin/starters/default/config/environments/netlify.yml +18 -0
- package/bin/starters/default/config/epub.yml +15 -0
- package/bin/starters/default/config/pdf.yml +16 -0
- package/bin/starters/default/config/site.yml +13 -0
- package/bin/starters/default/config.yml +53 -0
- package/bin/starters/default/content/about.md +20 -0
- package/bin/starters/default/content/bibliography.md +7 -0
- package/bin/starters/default/content/catalogue/1.md +28 -0
- package/bin/starters/default/content/catalogue/2.md +29 -0
- package/bin/starters/default/content/catalogue/3.md +20 -0
- package/bin/starters/default/content/catalogue/4.md +22 -0
- package/bin/starters/default/content/catalogue/catalogue-index.md +8 -0
- package/bin/starters/default/content/contents.md +7 -0
- package/bin/starters/default/content/contributors.md +7 -0
- package/bin/starters/default/content/cover.md +11 -0
- package/bin/starters/default/content/essay.md +80 -0
- package/bin/starters/default/content/intro.md +21 -0
- package/bin/starters/default/content/search-index.md +8 -0
- package/bin/starters/default/data/figures.yml +90 -0
- package/bin/starters/default/data/objects.yml +49 -0
- package/bin/starters/default/data/publication.yml +149 -0
- package/bin/starters/default/data/references.yml +11 -0
- package/bin/starters/default/static/css/custom.css +0 -0
- package/bin/starters/default/static/data/sample-geojson.json +16 -0
- package/bin/starters/default/static/downloads/.gitkeep +0 -0
- package/bin/starters/default/static/downloads/output.epub +0 -0
- package/bin/starters/default/static/downloads/output.mobi +0 -0
- package/bin/starters/default/static/downloads/output.pdf +0 -0
- package/bin/starters/default/static/img/contributors/judith-keller.jpg +0 -0
- package/bin/starters/default/static/img/cover.png +0 -0
- package/bin/starters/default/static/img/figures/duo.jpg +0 -0
- package/bin/starters/default/static/img/figures/evans-burroughs.jpg +0 -0
- package/bin/starters/default/static/img/figures/evans-child.jpg +0 -0
- package/bin/starters/default/static/img/figures/evans-graveyard.jpg +0 -0
- package/bin/starters/default/static/img/figures/evans-hymns.jpg +0 -0
- package/bin/starters/default/static/img/figures/evans-legionnaire.jpg +0 -0
- package/bin/starters/default/static/img/figures/evans-refugee.jpg +0 -0
- package/bin/starters/default/static/img/figures/evans-sons.jpg +0 -0
- package/bin/starters/default/static/img/figures/evans-video-still.jpg +0 -0
- package/bin/starters/default/static/img/figures/evans-washroom.jpg +0 -0
- package/bin/starters/default/static/img/figures/evans.jpg +0 -0
- package/bin/starters/default/static/img/figures/family.jpg +0 -0
- package/bin/starters/default/static/img/figures/lange-house.jpg +0 -0
- package/bin/starters/default/static/img/figures/lange.jpg +0 -0
- package/bin/starters/default/static/img/figures/mother-b.jpg +0 -0
- package/bin/starters/default/static/img/figures/mother-c.jpg +0 -0
- package/bin/starters/default/static/img/figures/mother.jpg +0 -0
- package/bin/starters/default/static/img/figures/pickers.jpg +0 -0
- package/bin/starters/default/static/img/logo-getty.png +0 -0
- package/bin/starters/default/static/img/pattern-spiral-overlay.png +0 -0
- package/bin/starters/default/static/js/custom.js +4 -0
- package/bin/themes/README.md +0 -0
- package/bin/themes/default/.circleci/config.yml +62 -0
- package/bin/themes/default/.eslintrc.js +16 -0
- package/bin/themes/default/.gitignore +13 -0
- package/bin/themes/default/.scss-lint.yml +239 -0
- package/bin/themes/default/CHANGELOG.md +73 -0
- package/bin/themes/default/LICENSE.md +20 -0
- package/bin/themes/default/README.md +112 -0
- package/bin/themes/default/archetypes/default.md +2 -0
- package/bin/themes/default/cypress.json +7 -0
- package/bin/themes/default/layouts/404.html +0 -0
- package/bin/themes/default/layouts/_default/baseof.html +43 -0
- package/bin/themes/default/layouts/_default/single.html +26 -0
- package/bin/themes/default/layouts/contents/single.html +37 -0
- package/bin/themes/default/layouts/cover/single.html +128 -0
- package/bin/themes/default/layouts/data/search-index.html +65 -0
- package/bin/themes/default/layouts/entry/single.html +372 -0
- package/bin/themes/default/layouts/essay/single.html +24 -0
- package/bin/themes/default/layouts/partials/analytics.html +29 -0
- package/bin/themes/default/layouts/partials/cite-this.html +348 -0
- package/bin/themes/default/layouts/partials/contents-list/card-image.html +13 -0
- package/bin/themes/default/layouts/partials/contents-list/closing-tags.html +59 -0
- package/bin/themes/default/layouts/partials/contents-list/contents-list.html +179 -0
- package/bin/themes/default/layouts/partials/contents-list/file-dir.html +7 -0
- package/bin/themes/default/layouts/partials/contents-list/file-path.html +10 -0
- package/bin/themes/default/layouts/partials/contents-list/list-item-type.html +9 -0
- package/bin/themes/default/layouts/partials/contents-list/list-item-types/abstract.html +17 -0
- package/bin/themes/default/layouts/partials/contents-list/list-item-types/brief.html +7 -0
- package/bin/themes/default/layouts/partials/contents-list/list-item-types/default.html +9 -0
- package/bin/themes/default/layouts/partials/contents-list/list-item-types/grid.html +30 -0
- package/bin/themes/default/layouts/partials/contents-list/section-heading.html +5 -0
- package/bin/themes/default/layouts/partials/contents-list.html +207 -0
- package/bin/themes/default/layouts/partials/contributor-info.html +78 -0
- package/bin/themes/default/layouts/partials/contributor-list.html +102 -0
- package/bin/themes/default/layouts/partials/copyright.html +155 -0
- package/bin/themes/default/layouts/partials/debug-contents.html +8 -0
- package/bin/themes/default/layouts/partials/dublin-core.html +21 -0
- package/bin/themes/default/layouts/partials/error-message.html +19 -0
- package/bin/themes/default/layouts/partials/figure-caption.html +1 -0
- package/bin/themes/default/layouts/partials/figure-fallback.html +31 -0
- package/bin/themes/default/layouts/partials/figure-image.html +44 -0
- package/bin/themes/default/layouts/partials/figure-label.html +15 -0
- package/bin/themes/default/layouts/partials/figure-soundcloud.html +25 -0
- package/bin/themes/default/layouts/partials/figure-table.html +44 -0
- package/bin/themes/default/layouts/partials/figure-vimeo.html +24 -0
- package/bin/themes/default/layouts/partials/figure-website.html +21 -0
- package/bin/themes/default/layouts/partials/figure-youtube.html +23 -0
- package/bin/themes/default/layouts/partials/figures/caption.html +44 -0
- package/bin/themes/default/layouts/partials/figures/label.html +35 -0
- package/bin/themes/default/layouts/partials/figures/media-types/fallback.html +32 -0
- package/bin/themes/default/layouts/partials/figures/media-types/image.html +54 -0
- package/bin/themes/default/layouts/partials/figures/media-types/soundcloud.html +35 -0
- package/bin/themes/default/layouts/partials/figures/media-types/table.html +53 -0
- package/bin/themes/default/layouts/partials/figures/media-types/vimeo.html +34 -0
- package/bin/themes/default/layouts/partials/figures/media-types/website.html +24 -0
- package/bin/themes/default/layouts/partials/figures/media-types/youtube.html +29 -0
- package/bin/themes/default/layouts/partials/footer-buttons.html +29 -0
- package/bin/themes/default/layouts/partials/head.html +46 -0
- package/bin/themes/default/layouts/partials/icon.html +20 -0
- package/bin/themes/default/layouts/partials/icons-cc.html +86 -0
- package/bin/themes/default/layouts/partials/icons.html +54 -0
- package/bin/themes/default/layouts/partials/json-ld.html +117 -0
- package/bin/themes/default/layouts/partials/link-list-arrow.html +16 -0
- package/bin/themes/default/layouts/partials/link-list.html +11 -0
- package/bin/themes/default/layouts/partials/menu-header.html +25 -0
- package/bin/themes/default/layouts/partials/menu.html +69 -0
- package/bin/themes/default/layouts/partials/metadata.html +27 -0
- package/bin/themes/default/layouts/partials/navbar.html +173 -0
- package/bin/themes/default/layouts/partials/open-graph.html +43 -0
- package/bin/themes/default/layouts/partials/page-abstract.html +7 -0
- package/bin/themes/default/layouts/partials/page-bibliography.html +59 -0
- package/bin/themes/default/layouts/partials/page-class.html +9 -0
- package/bin/themes/default/layouts/partials/page-contributor.html +48 -0
- package/bin/themes/default/layouts/partials/page-header.html +22 -0
- package/bin/themes/default/layouts/partials/page-title.html +9 -0
- package/bin/themes/default/layouts/partials/page-tombstone.html +36 -0
- package/bin/themes/default/layouts/partials/pdf-info.html +20 -0
- package/bin/themes/default/layouts/partials/pdf-title-pages.html +39 -0
- package/bin/themes/default/layouts/partials/scripts.html +5 -0
- package/bin/themes/default/layouts/partials/search.html +52 -0
- package/bin/themes/default/layouts/partials/site-title.html +9 -0
- package/bin/themes/default/layouts/partials/tests/check-node-modules.html +9 -0
- package/bin/themes/default/layouts/partials/tests/check-page-one-class.html +21 -0
- package/bin/themes/default/layouts/partials/tests/check-page-weights.html +49 -0
- package/bin/themes/default/layouts/partials/tests/run.html +13 -0
- package/bin/themes/default/layouts/partials/twitter-card.html +23 -0
- package/bin/themes/default/layouts/shortcodes/q-bibliography.html +61 -0
- package/bin/themes/default/layouts/shortcodes/q-cite.html +79 -0
- package/bin/themes/default/layouts/shortcodes/q-class.html +3 -0
- package/bin/themes/default/layouts/shortcodes/q-contributor.html +327 -0
- package/bin/themes/default/layouts/shortcodes/q-contributors.html +11 -0
- package/bin/themes/default/layouts/shortcodes/q-figure-group.html +457 -0
- package/bin/themes/default/layouts/shortcodes/q-figure-new.html +70 -0
- package/bin/themes/default/layouts/shortcodes/q-figure-zoom.html +408 -0
- package/bin/themes/default/layouts/shortcodes/q-figure.html +86 -0
- package/bin/themes/default/layouts/sitemap.xml +24 -0
- package/bin/themes/default/layouts/splash/single.html +67 -0
- package/bin/themes/default/package-lock.json +13198 -0
- package/bin/themes/default/package.json +96 -0
- package/bin/themes/default/source/css/application.scss +30 -0
- package/bin/themes/default/source/css/bulma-components.scss +21 -0
- package/bin/themes/default/source/css/colors.scss +16 -0
- package/bin/themes/default/source/css/components/_all.scss +15 -0
- package/bin/themes/default/source/css/components/container.sass +35 -0
- package/bin/themes/default/source/css/components/quire-buttons.scss +95 -0
- package/bin/themes/default/source/css/components/quire-citation.scss +77 -0
- package/bin/themes/default/source/css/components/quire-contents-list.scss +329 -0
- package/bin/themes/default/source/css/components/quire-contributors.scss +131 -0
- package/bin/themes/default/source/css/components/quire-copyright.scss +28 -0
- package/bin/themes/default/source/css/components/quire-cover.scss +216 -0
- package/bin/themes/default/source/css/components/quire-deepzoom.scss +181 -0
- package/bin/themes/default/source/css/components/quire-entry.scss +651 -0
- package/bin/themes/default/source/css/components/quire-figure.scss +589 -0
- package/bin/themes/default/source/css/components/quire-map.scss +17 -0
- package/bin/themes/default/source/css/components/quire-menu.scss +209 -0
- package/bin/themes/default/source/css/components/quire-navbar.scss +366 -0
- package/bin/themes/default/source/css/components/quire-page.scss +920 -0
- package/bin/themes/default/source/css/components/quire-popup.scss +233 -0
- package/bin/themes/default/source/css/components/quire-search.scss +121 -0
- package/bin/themes/default/source/css/epub.scss +549 -0
- package/bin/themes/default/source/css/fonts.scss +159 -0
- package/bin/themes/default/source/css/layout.scss +186 -0
- package/bin/themes/default/source/css/print.scss +613 -0
- package/bin/themes/default/source/css/utilities.scss +345 -0
- package/bin/themes/default/source/css/variables.scss +144 -0
- package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-bold.eot +0 -0
- package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-bold.woff +0 -0
- package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-bold.woff2 +0 -0
- package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-bolditalic.eot +0 -0
- package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-bolditalic.woff +0 -0
- package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-bolditalic.woff2 +0 -0
- package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-italic.eot +0 -0
- package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-italic.woff +0 -0
- package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-italic.woff2 +0 -0
- package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-regular.eot +0 -0
- package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-regular.woff +0 -0
- package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-regular.woff2 +0 -0
- package/bin/themes/default/source/fonts/noto-sans/notosans-bold.eot +0 -0
- package/bin/themes/default/source/fonts/noto-sans/notosans-bold.woff +0 -0
- package/bin/themes/default/source/fonts/noto-sans/notosans-bold.woff2 +0 -0
- package/bin/themes/default/source/fonts/noto-sans/notosans-bolditalic.eot +0 -0
- package/bin/themes/default/source/fonts/noto-sans/notosans-bolditalic.woff +0 -0
- package/bin/themes/default/source/fonts/noto-sans/notosans-bolditalic.woff2 +0 -0
- package/bin/themes/default/source/fonts/noto-sans/notosans-italic.eot +0 -0
- package/bin/themes/default/source/fonts/noto-sans/notosans-italic.woff +0 -0
- package/bin/themes/default/source/fonts/noto-sans/notosans-italic.woff2 +0 -0
- package/bin/themes/default/source/fonts/noto-sans/notosans-regular.eot +0 -0
- package/bin/themes/default/source/fonts/noto-sans/notosans-regular.woff +0 -0
- package/bin/themes/default/source/fonts/noto-sans/notosans-regular.woff2 +0 -0
- package/bin/themes/default/source/fonts/noto-serif/notoserif-bold.eot +0 -0
- package/bin/themes/default/source/fonts/noto-serif/notoserif-bold.woff +0 -0
- package/bin/themes/default/source/fonts/noto-serif/notoserif-bold.woff2 +0 -0
- package/bin/themes/default/source/fonts/noto-serif/notoserif-bolditalic.eot +0 -0
- package/bin/themes/default/source/fonts/noto-serif/notoserif-bolditalic.woff +0 -0
- package/bin/themes/default/source/fonts/noto-serif/notoserif-bolditalic.woff2 +0 -0
- package/bin/themes/default/source/fonts/noto-serif/notoserif-italic.eot +0 -0
- package/bin/themes/default/source/fonts/noto-serif/notoserif-italic.woff +0 -0
- package/bin/themes/default/source/fonts/noto-serif/notoserif-italic.woff2 +0 -0
- package/bin/themes/default/source/fonts/noto-serif/notoserif-regular.eot +0 -0
- package/bin/themes/default/source/fonts/noto-serif/notoserif-regular.woff +0 -0
- package/bin/themes/default/source/fonts/noto-serif/notoserif-regular.woff2 +0 -0
- package/bin/themes/default/source/img/cover.png +0 -0
- package/bin/themes/default/source/img/fullscreen.png +0 -0
- package/bin/themes/default/source/img/icons/arrow_forward.png +0 -0
- package/bin/themes/default/source/img/icons/baseline-headset-24px.png +0 -0
- package/bin/themes/default/source/img/icons/baseline-videocam-24px.png +0 -0
- package/bin/themes/default/source/img/icons/baseline-website-24px.png +0 -0
- package/bin/themes/default/source/img/icons/cc-by-nc-nd.png +0 -0
- package/bin/themes/default/source/img/icons/cc-by-nc-sa.png +0 -0
- package/bin/themes/default/source/img/icons/cc-by-nc.png +0 -0
- package/bin/themes/default/source/img/icons/cc-by-nd.png +0 -0
- package/bin/themes/default/source/img/icons/cc-by-sa.png +0 -0
- package/bin/themes/default/source/img/icons/cc-by.png +0 -0
- package/bin/themes/default/source/img/icons/cc-zero.png +0 -0
- package/bin/themes/default/source/img/icons/close.png +0 -0
- package/bin/themes/default/source/img/icons/down-arrow.png +0 -0
- package/bin/themes/default/source/img/icons/download.png +0 -0
- package/bin/themes/default/source/img/icons/favicon.ico +0 -0
- package/bin/themes/default/source/img/icons/home.png +0 -0
- package/bin/themes/default/source/img/icons/left-arrow.png +0 -0
- package/bin/themes/default/source/img/icons/link.png +0 -0
- package/bin/themes/default/source/img/icons/nav.png +0 -0
- package/bin/themes/default/source/img/icons/right-arrow.png +0 -0
- package/bin/themes/default/source/img/icons/search.png +0 -0
- package/bin/themes/default/source/img/icons/start.png +0 -0
- package/bin/themes/default/source/img/layers-2x.png +0 -0
- package/bin/themes/default/source/img/layers.png +0 -0
- package/bin/themes/default/source/img/marker-icon.png +0 -0
- package/bin/themes/default/source/img/pattern-spiral-overlay.png +0 -0
- package/bin/themes/default/source/img/promo-screenshots/classic-catalogue.png +0 -0
- package/bin/themes/default/source/img/promo-screenshots/classic-entry.png +0 -0
- package/bin/themes/default/source/img/promo-screenshots/classic-essay.png +0 -0
- package/bin/themes/default/source/img/promo-screenshots/modern-contents.png +0 -0
- package/bin/themes/default/source/img/promo-screenshots/modern-cover.png +0 -0
- package/bin/themes/default/source/img/promo-screenshots/modern-essay.png +0 -0
- package/bin/themes/default/source/js/application.js +604 -0
- package/bin/themes/default/source/js/deepzoom.js +186 -0
- package/bin/themes/default/source/js/epub.js +9 -0
- package/bin/themes/default/source/js/fullscreen.js +190 -0
- package/bin/themes/default/source/js/helper.js +197 -0
- package/bin/themes/default/source/js/map.js +94 -0
- package/bin/themes/default/source/js/navigation.js +59 -0
- package/bin/themes/default/source/js/popup.js +311 -0
- package/bin/themes/default/source/js/search.js +35 -0
- package/bin/themes/default/source/js/soundcloud-api.js +1 -0
- package/bin/themes/default/static/css/epub.css +401 -0
- package/bin/themes/default/static/fonts/MaterialIcons-Regular.eot +0 -0
- package/bin/themes/default/static/fonts/MaterialIcons-Regular.woff +0 -0
- package/bin/themes/default/static/fonts/MaterialIcons-Regular.woff2 +0 -0
- package/bin/themes/default/static/fonts/ibmplexsanscondensed-bold.eot +0 -0
- package/bin/themes/default/static/fonts/ibmplexsanscondensed-bold.woff +0 -0
- package/bin/themes/default/static/fonts/ibmplexsanscondensed-bold.woff2 +0 -0
- package/bin/themes/default/static/fonts/ibmplexsanscondensed-bolditalic.eot +0 -0
- package/bin/themes/default/static/fonts/ibmplexsanscondensed-bolditalic.woff +0 -0
- package/bin/themes/default/static/fonts/ibmplexsanscondensed-bolditalic.woff2 +0 -0
- package/bin/themes/default/static/fonts/ibmplexsanscondensed-italic.eot +0 -0
- package/bin/themes/default/static/fonts/ibmplexsanscondensed-italic.woff +0 -0
- package/bin/themes/default/static/fonts/ibmplexsanscondensed-italic.woff2 +0 -0
- package/bin/themes/default/static/fonts/ibmplexsanscondensed-regular.eot +0 -0
- package/bin/themes/default/static/fonts/ibmplexsanscondensed-regular.woff +0 -0
- package/bin/themes/default/static/fonts/ibmplexsanscondensed-regular.woff2 +0 -0
- package/bin/themes/default/static/fonts/notosans-bold.eot +0 -0
- package/bin/themes/default/static/fonts/notosans-bold.woff +0 -0
- package/bin/themes/default/static/fonts/notosans-bold.woff2 +0 -0
- package/bin/themes/default/static/fonts/notosans-bolditalic.eot +0 -0
- package/bin/themes/default/static/fonts/notosans-bolditalic.woff +0 -0
- package/bin/themes/default/static/fonts/notosans-bolditalic.woff2 +0 -0
- package/bin/themes/default/static/fonts/notosans-italic.eot +0 -0
- package/bin/themes/default/static/fonts/notosans-italic.woff +0 -0
- package/bin/themes/default/static/fonts/notosans-italic.woff2 +0 -0
- package/bin/themes/default/static/fonts/notosans-regular.eot +0 -0
- package/bin/themes/default/static/fonts/notosans-regular.woff +0 -0
- package/bin/themes/default/static/fonts/notosans-regular.woff2 +0 -0
- package/bin/themes/default/static/fonts/notoserif-bold.eot +0 -0
- package/bin/themes/default/static/fonts/notoserif-bold.woff +0 -0
- package/bin/themes/default/static/fonts/notoserif-bold.woff2 +0 -0
- package/bin/themes/default/static/fonts/notoserif-bolditalic.eot +0 -0
- package/bin/themes/default/static/fonts/notoserif-bolditalic.woff +0 -0
- package/bin/themes/default/static/fonts/notoserif-bolditalic.woff2 +0 -0
- package/bin/themes/default/static/fonts/notoserif-italic.eot +0 -0
- package/bin/themes/default/static/fonts/notoserif-italic.woff +0 -0
- package/bin/themes/default/static/fonts/notoserif-italic.woff2 +0 -0
- package/bin/themes/default/static/fonts/notoserif-regular.eot +0 -0
- package/bin/themes/default/static/fonts/notoserif-regular.woff +0 -0
- package/bin/themes/default/static/fonts/notoserif-regular.woff2 +0 -0
- package/bin/themes/default/static/img/baseline-website-24px.png +0 -0
- package/bin/themes/default/static/img/cover.png +0 -0
- package/bin/themes/default/static/img/fullscreen.png +0 -0
- package/bin/themes/default/static/img/fullscreen@2x.png +0 -0
- package/bin/themes/default/static/img/icons/arrow_forward.png +0 -0
- package/bin/themes/default/static/img/icons/baseline-headset-24px.png +0 -0
- package/bin/themes/default/static/img/icons/baseline-videocam-24px.png +0 -0
- package/bin/themes/default/static/img/icons/baseline-website-24px.png +0 -0
- package/bin/themes/default/static/img/icons/cc-by-nc-nd.png +0 -0
- package/bin/themes/default/static/img/icons/cc-by-nc-sa.png +0 -0
- package/bin/themes/default/static/img/icons/cc-by-nc.png +0 -0
- package/bin/themes/default/static/img/icons/cc-by-nd.png +0 -0
- package/bin/themes/default/static/img/icons/cc-by-sa.png +0 -0
- package/bin/themes/default/static/img/icons/cc-by.png +0 -0
- package/bin/themes/default/static/img/icons/cc-zero.png +0 -0
- package/bin/themes/default/static/img/icons/close.png +0 -0
- package/bin/themes/default/static/img/icons/down-arrow.png +0 -0
- package/bin/themes/default/static/img/icons/download.png +0 -0
- package/bin/themes/default/static/img/icons/favicon.ico +0 -0
- package/bin/themes/default/static/img/icons/home.png +0 -0
- package/bin/themes/default/static/img/icons/left-arrow.png +0 -0
- package/bin/themes/default/static/img/icons/link.png +0 -0
- package/bin/themes/default/static/img/icons/nav.png +0 -0
- package/bin/themes/default/static/img/icons/right-arrow.png +0 -0
- package/bin/themes/default/static/img/icons/search.png +0 -0
- package/bin/themes/default/static/img/icons/soundcloud.png +0 -0
- package/bin/themes/default/static/img/icons/start.png +0 -0
- package/bin/themes/default/static/img/icons/vimeo.png +0 -0
- package/bin/themes/default/static/img/icons/website.png +0 -0
- package/bin/themes/default/static/img/icons/youtube.png +0 -0
- package/bin/themes/default/static/img/layers-2x.png +0 -0
- package/bin/themes/default/static/img/layers.png +0 -0
- package/bin/themes/default/static/img/marker-icon.png +0 -0
- package/bin/themes/default/static/img/pattern-spiral-overlay.png +0 -0
- package/bin/themes/default/tests/.gitkeep +0 -0
- package/bin/themes/default/tests/e2e/.eslintrc.js +9 -0
- package/bin/themes/default/tests/e2e/fixtures/blns.json +483 -0
- package/bin/themes/default/tests/e2e/plugins/index.js +22 -0
- package/bin/themes/default/tests/e2e/specs/quire-contents.spec.js +52 -0
- package/bin/themes/default/tests/e2e/specs/quire-contributors.spec.js +66 -0
- package/bin/themes/default/tests/e2e/specs/quire-entry.spec.js +104 -0
- package/bin/themes/default/tests/e2e/specs/quire-essay.spec.js +105 -0
- package/bin/themes/default/tests/e2e/specs/quire-menu.spec.js +38 -0
- package/bin/themes/default/tests/e2e/specs/quire-modal.spec.js +69 -0
- package/bin/themes/default/tests/e2e/specs/quire-next-back-buttons.spec.js +27 -0
- package/bin/themes/default/tests/e2e/specs/quire-page.spec.js +28 -0
- package/bin/themes/default/tests/e2e/specs/quire-search.spec.js +48 -0
- package/bin/themes/default/tests/e2e/specs/quire-splash.spec.js +38 -0
- package/bin/themes/default/tests/e2e/support/commands.js +25 -0
- package/bin/themes/default/tests/e2e/support/index.js +20 -0
- package/bin/themes/default/theme.toml +22 -0
- package/bin/themes/default/tsconfig.json +5 -0
- package/bin/themes/default/webpack/webpack.config.dev.js +128 -0
- package/bin/themes/default/webpack/webpack.config.epub.js +140 -0
- package/bin/themes/default/webpack/webpack.config.pdf.js +135 -0
- package/bin/themes/default/webpack/webpack.config.prod.js +133 -0
- package/package.json +1 -1
- package/index.js +0 -20
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
object_display_order:
|
|
2
|
+
- artist
|
|
3
|
+
- year
|
|
4
|
+
- dimensions
|
|
5
|
+
- medium
|
|
6
|
+
- location
|
|
7
|
+
object_list:
|
|
8
|
+
- id: 1
|
|
9
|
+
title: Human Erosion in California / Migrant Mother
|
|
10
|
+
artist: Dorothea Lange
|
|
11
|
+
year: 1936
|
|
12
|
+
medium: Gelatin silver print
|
|
13
|
+
dimensions: 34.1 cm × 26.8 cm (13 <sup>7</sup>⁄<sub>16</sub> in × 10 <sup>9</sup>⁄<sub>16</sub> in.)
|
|
14
|
+
location: J. Paul Getty Museum
|
|
15
|
+
link: https://www.getty.edu/art/collection/objects/125690/
|
|
16
|
+
figure:
|
|
17
|
+
- id: "mother"
|
|
18
|
+
- id: "mother-b"
|
|
19
|
+
- id: "mother-c"
|
|
20
|
+
- id: 2
|
|
21
|
+
title: Pea Pickers, Nipomo, California
|
|
22
|
+
artist: Dorothea Lange
|
|
23
|
+
year: 1936
|
|
24
|
+
medium: Gelatin silver print, with applied pigment
|
|
25
|
+
dimensions: 29.5 cm × 24.4 cm (7 <sup>11</sup>⁄<sub>16</sub> in × 9 <sup>5</sup>⁄<sub>8</sub> in.)
|
|
26
|
+
location: J. Paul Getty Museum
|
|
27
|
+
link: https://www.getty.edu/art/collection/objects/130784/
|
|
28
|
+
figure:
|
|
29
|
+
- id: "pickers"
|
|
30
|
+
- id: 3
|
|
31
|
+
title: Bud Fields and His Wife Ivy, and His Daughter Ellen, Hale County, Alabama
|
|
32
|
+
artist: Walker Evans
|
|
33
|
+
year: 1936
|
|
34
|
+
medium: Gelatin silver print
|
|
35
|
+
dimensions: 19.4 x 24.4 (7 <sup>5</sup>⁄<sub>8</sub> x 9 <sup>5</sup>⁄<sub>8</sub> in.)
|
|
36
|
+
location: J. Paul Getty Museum
|
|
37
|
+
link: https://www.getty.edu/art/collection/objects/45651/
|
|
38
|
+
figure:
|
|
39
|
+
- id: "duo"
|
|
40
|
+
- id: 4
|
|
41
|
+
title: Burroughs Family, Hale County, Alabama
|
|
42
|
+
artist: Walker Evans
|
|
43
|
+
year: 1935
|
|
44
|
+
medium: Gelatin silver print
|
|
45
|
+
dimensions: 19.2 x 24.1 (7 <sup>9</sup>⁄<sub>16</sub> x 9 <sup>1</sup>⁄<sub>2</sub> in.)
|
|
46
|
+
location: J. Paul Getty Museum
|
|
47
|
+
link: https://www.getty.edu/art/collection/objects/34753/
|
|
48
|
+
figure:
|
|
49
|
+
- id: "family"
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
--- # ------------------------------------------------------------------------------
|
|
2
|
+
|
|
3
|
+
# ==============================================================================
|
|
4
|
+
# Publication.yml
|
|
5
|
+
# ------------------------------------------------------------------------------
|
|
6
|
+
#
|
|
7
|
+
# This file houses the bibliographic info and general metadata for your digital
|
|
8
|
+
# publication.
|
|
9
|
+
|
|
10
|
+
# ------------------------------------------------------------------------------
|
|
11
|
+
# Title & Description
|
|
12
|
+
title: New Deal Photography
|
|
13
|
+
subtitle: The Works of Dorothea Lange and Walker Evans
|
|
14
|
+
reading_line:
|
|
15
|
+
short_title:
|
|
16
|
+
|
|
17
|
+
description:
|
|
18
|
+
one_line:
|
|
19
|
+
full: >-
|
|
20
|
+
Quire is a digital publishing framework built on top of the Hugo static site
|
|
21
|
+
generator. Generate Web, PDF, and print books (with Epub coming soon) from a single set of text files.
|
|
22
|
+
|
|
23
|
+
# ------------------------------------------------------------------------------
|
|
24
|
+
# Publication Details
|
|
25
|
+
# ------------------------------------------------------------------------------
|
|
26
|
+
|
|
27
|
+
pub_date: 2019-03-01 # YYYY-MM-DD
|
|
28
|
+
language: en
|
|
29
|
+
pub_type: book # book | journal-periodical | other
|
|
30
|
+
|
|
31
|
+
identifier:
|
|
32
|
+
isbn:
|
|
33
|
+
url:
|
|
34
|
+
|
|
35
|
+
publisher:
|
|
36
|
+
- name: J. Paul Getty Trust
|
|
37
|
+
location: Los Angeles
|
|
38
|
+
url:
|
|
39
|
+
logo: logo-getty.png
|
|
40
|
+
|
|
41
|
+
# ------------------------------------------------------------------------------
|
|
42
|
+
# Contributors
|
|
43
|
+
# ------------------------------------------------------------------------------
|
|
44
|
+
|
|
45
|
+
contributor_as_it_appears:
|
|
46
|
+
|
|
47
|
+
contributor:
|
|
48
|
+
- id: jkeller
|
|
49
|
+
type: primary
|
|
50
|
+
first_name: Judith
|
|
51
|
+
last_name: Keller
|
|
52
|
+
title: Senior Curator of Photographs
|
|
53
|
+
affiliation: J. Paul Getty Museum
|
|
54
|
+
bio: "Judith Keller joined the J. Paul Getty Museum in 1986 and since 2008 was an Associate Curator of Photographs. In 2010, she was named the Senior Curator of Photographs. Keller received her B.A. in Art History and a Masters in Museum Practice and Art History from the University of Michigan at Ann Arbor. She also completed course work for a Phd. in Art History at the University of Michigan. Prior to her tenure at the Getty, Keller worked at The University of Michigan Museum of Art (1979 – 1981) and at the Archer M. Huntington Art Gallery (now the Blanton Museum of Art) at The University of Texas, Austin, as Curator of Prints and Drawings."
|
|
55
|
+
url: https://news.getty.edu/judith-keller-named-senior-curator-photographs-at-j-paul-getty-museum.htm
|
|
56
|
+
pic: contributors/judith-keller.jpg
|
|
57
|
+
- id:
|
|
58
|
+
type:
|
|
59
|
+
first_name:
|
|
60
|
+
last_name:
|
|
61
|
+
title:
|
|
62
|
+
affiliation:
|
|
63
|
+
bio:
|
|
64
|
+
url:
|
|
65
|
+
pic:
|
|
66
|
+
|
|
67
|
+
# ------------------------------------------------------------------------------
|
|
68
|
+
# Copright & License
|
|
69
|
+
# ------------------------------------------------------------------------------
|
|
70
|
+
|
|
71
|
+
copyright: © 2017 J. Paul Getty Trust
|
|
72
|
+
|
|
73
|
+
license:
|
|
74
|
+
name: Creative Commons Attribution 4.0 International License
|
|
75
|
+
abbreviation: CC BY
|
|
76
|
+
url: https://creativecommons.org/licenses/by/4.0/
|
|
77
|
+
scope: full # full | text-only | some-exceptions
|
|
78
|
+
|
|
79
|
+
# ------------------------------------------------------------------------------
|
|
80
|
+
# Formats, Resources & Links
|
|
81
|
+
# ------------------------------------------------------------------------------
|
|
82
|
+
|
|
83
|
+
resource_link:
|
|
84
|
+
- type: other-format
|
|
85
|
+
name: PDF
|
|
86
|
+
media_type: application/pdf
|
|
87
|
+
link_relation: alternate
|
|
88
|
+
url: /downloads/output.pdf
|
|
89
|
+
- type: other-format
|
|
90
|
+
name: EPUB
|
|
91
|
+
media_type: application/epub+zip
|
|
92
|
+
link_relation: alternate
|
|
93
|
+
url: /downloads/output.epub
|
|
94
|
+
- type: other-format
|
|
95
|
+
name: Kindle/MOBI
|
|
96
|
+
media_type: vnd.amazon.mobi8-ebook
|
|
97
|
+
link_relation: alternate
|
|
98
|
+
url: /downloads/output.mobi
|
|
99
|
+
- type: footer-link
|
|
100
|
+
name: About
|
|
101
|
+
link_relation: about
|
|
102
|
+
url: /about/
|
|
103
|
+
- type: footer-link
|
|
104
|
+
name: Privacy Policy
|
|
105
|
+
link_relation: privacy-policy
|
|
106
|
+
url:
|
|
107
|
+
- type: footer-link
|
|
108
|
+
name: Terms of Use
|
|
109
|
+
link_relation: terms-of-service
|
|
110
|
+
url:
|
|
111
|
+
|
|
112
|
+
# ------------------------------------------------------------------------------
|
|
113
|
+
# Subjects
|
|
114
|
+
# ------------------------------------------------------------------------------
|
|
115
|
+
|
|
116
|
+
subject:
|
|
117
|
+
- type: bisac
|
|
118
|
+
name: PHOTOGRAPHY / Subjects & Themes / Historical
|
|
119
|
+
identifer: PHO023100
|
|
120
|
+
- type: getty
|
|
121
|
+
name: Dorothea Lange
|
|
122
|
+
identifier: "https://vocab.getty.edu/ulan/500007674"
|
|
123
|
+
- type: keyword
|
|
124
|
+
name: photography
|
|
125
|
+
- type: getty
|
|
126
|
+
name: Walker Evans
|
|
127
|
+
identifier: "https://vocab.getty.edu/ulan/500012076"
|
|
128
|
+
- type: getty
|
|
129
|
+
name: black-and-white photography
|
|
130
|
+
identifier: "https://vocab.getty.edu/aat/300162056"
|
|
131
|
+
- type: getty
|
|
132
|
+
name: despression (economic concept)
|
|
133
|
+
identifier: "https://vocab.getty.edu/aat/300410245"
|
|
134
|
+
|
|
135
|
+
# ------------------------------------------------------------------------------
|
|
136
|
+
# Revision History
|
|
137
|
+
# ------------------------------------------------------------------------------
|
|
138
|
+
|
|
139
|
+
revision_history:
|
|
140
|
+
- date:
|
|
141
|
+
summary:
|
|
142
|
+
|
|
143
|
+
repository_url:
|
|
144
|
+
|
|
145
|
+
# ------------------------------------------------------------------------------
|
|
146
|
+
# Promo Image
|
|
147
|
+
# ------------------------------------------------------------------------------
|
|
148
|
+
|
|
149
|
+
promo_image: cover.png
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
entries:
|
|
2
|
+
- id: "Evans 1938"
|
|
3
|
+
full: "Evans, Walker. *American Photographs*. New York: Museum of Modern Art, 1938."
|
|
4
|
+
- id: "Lynd 1929"
|
|
5
|
+
full: "Lynd, Robert S., and Helen Merrell Lynd. *Middletown: A Study in American Culture* San Diego: Harcourt Brace Jovanovich, 1929; reprint, Harvest/HBJ, 1956."
|
|
6
|
+
- id: "Agee 1941"
|
|
7
|
+
full: "Agee, James, and Walker Evans. *Let Us Now Praise Famous Men: Three Tenant Families*. Boston: Houghton Mifflin, 1941."
|
|
8
|
+
- id: "Kirstein 1938"
|
|
9
|
+
full: "Kirstein, Lincoln. Photographs of America: Walker Evans *American Photographs*. New York: Museum of Modern Art, 1938"
|
|
10
|
+
- id: "West 1939"
|
|
11
|
+
full: "West, Anthony. Middletown and Main street. *Architectual Review* 85. 1939."
|
|
File without changes
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "FeatureCollection",
|
|
3
|
+
"features": [
|
|
4
|
+
{
|
|
5
|
+
"type": "Feature",
|
|
6
|
+
"geometry": {
|
|
7
|
+
"type": "Point",
|
|
8
|
+
"coordinates": [2.3522, 48.8566]
|
|
9
|
+
},
|
|
10
|
+
"properties": {
|
|
11
|
+
"name": "Sample GeoJson Point",
|
|
12
|
+
"description": "This point is defined in sample-geojson.json in the static/data/ folder"
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
]
|
|
16
|
+
}
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
// Use this file to add custom JavaScript
|
|
2
|
+
//
|
|
3
|
+
// A number of JavaScript functions and libraries are included with Quire,
|
|
4
|
+
// to see which ones, check the files in themes/quire-starter-theme/source/js // and the list of dependencies in themes/quire-starter-theme/package.json
|
|
File without changes
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# Javascript Node CircleCI 2.0 configuration file
|
|
2
|
+
#
|
|
3
|
+
version: 2
|
|
4
|
+
jobs:
|
|
5
|
+
build:
|
|
6
|
+
docker:
|
|
7
|
+
- image: cypress/base:10
|
|
8
|
+
user: root
|
|
9
|
+
working_directory: ~/quire-starter-theme
|
|
10
|
+
parallelism: 1
|
|
11
|
+
steps:
|
|
12
|
+
- checkout
|
|
13
|
+
- run:
|
|
14
|
+
name: Add test directories
|
|
15
|
+
command: |
|
|
16
|
+
mkdir -p ~/quire-starter-theme/test-results/e2e/videos
|
|
17
|
+
mkdir -p ~/quire-starter-theme/test-results/e2e/screenshots
|
|
18
|
+
- add_ssh_keys:
|
|
19
|
+
fingerprints:
|
|
20
|
+
- "9b:ca:68:bb:73:d0:32:71:61:d5:44:19:c2:63:36:2e"
|
|
21
|
+
- run:
|
|
22
|
+
name: Clone and install quire-cli
|
|
23
|
+
command: |
|
|
24
|
+
git clone git@github.com:gettypubs/quire-cli.git ~/quire-cli
|
|
25
|
+
cd ~/quire-cli/
|
|
26
|
+
npm install -g
|
|
27
|
+
npm ci
|
|
28
|
+
- run:
|
|
29
|
+
name: Remove key from config to add new one
|
|
30
|
+
command: |
|
|
31
|
+
> ~/.ssh/config
|
|
32
|
+
- add_ssh_keys:
|
|
33
|
+
fingerprints:
|
|
34
|
+
- "f9:71:a0:e0:e1:a5:8c:9d:3a:a8:8a:47:e4:9a:8c:af"
|
|
35
|
+
- run:
|
|
36
|
+
name: Add quire-starter and move theme into themes folder and install theme dependencies
|
|
37
|
+
command: |
|
|
38
|
+
git clone git@github.com:gettypubs/quire-starter.git ~/quire-starter
|
|
39
|
+
mv ~/quire-starter-theme/ ~/quire-starter/themes/
|
|
40
|
+
cd ~/quire-starter/themes/quire-starter-theme/
|
|
41
|
+
npm ci
|
|
42
|
+
- run:
|
|
43
|
+
name: Run quire preview -v
|
|
44
|
+
command: |
|
|
45
|
+
cd ~/quire-starter/
|
|
46
|
+
quire preview -v
|
|
47
|
+
background: true
|
|
48
|
+
- save_cache:
|
|
49
|
+
paths:
|
|
50
|
+
- ~/quire-starter/themes/quire-starter-theme/node_modules
|
|
51
|
+
- ~/.npm
|
|
52
|
+
- ~/.cache
|
|
53
|
+
key: v3-dependency-cache-{{ checksum "~/quire-starter/themes/quire-starter-theme/package.json" }}
|
|
54
|
+
- run:
|
|
55
|
+
name: Run Cypress Tests
|
|
56
|
+
command: |
|
|
57
|
+
cd ~/quire-starter/themes/quire-starter-theme/
|
|
58
|
+
npm run test:e2e
|
|
59
|
+
- store_test_results:
|
|
60
|
+
path: ~/quire-starter/themes/quire-starter-theme/test-results
|
|
61
|
+
- store_artifacts:
|
|
62
|
+
path: ~/quire-starter/themes/quire-starter-theme/test-results
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
env: {
|
|
3
|
+
browser: true,
|
|
4
|
+
es6: true
|
|
5
|
+
},
|
|
6
|
+
extends: "eslint:recommended",
|
|
7
|
+
globals: {
|
|
8
|
+
Atomics: "readonly",
|
|
9
|
+
SharedArrayBuffer: "readonly"
|
|
10
|
+
},
|
|
11
|
+
parserOptions: {
|
|
12
|
+
ecmaVersion: 2018,
|
|
13
|
+
sourceType: "module"
|
|
14
|
+
},
|
|
15
|
+
rules: {}
|
|
16
|
+
};
|
|
@@ -0,0 +1,239 @@
|
|
|
1
|
+
scss_files: "**/*.scss"
|
|
2
|
+
plugin_directories: ['.scss-linters']
|
|
3
|
+
|
|
4
|
+
# Default severity of all linters.
|
|
5
|
+
severity: warning
|
|
6
|
+
|
|
7
|
+
linters:
|
|
8
|
+
BangFormat:
|
|
9
|
+
enabled: true
|
|
10
|
+
space_before_bang: true
|
|
11
|
+
space_after_bang: false
|
|
12
|
+
|
|
13
|
+
BemDepth:
|
|
14
|
+
enabled: false
|
|
15
|
+
max_elements: 1
|
|
16
|
+
|
|
17
|
+
BorderZero:
|
|
18
|
+
enabled: true
|
|
19
|
+
convention: zero # or `none`
|
|
20
|
+
|
|
21
|
+
ChainedClasses:
|
|
22
|
+
enabled: false
|
|
23
|
+
|
|
24
|
+
ColorKeyword:
|
|
25
|
+
enabled: true
|
|
26
|
+
|
|
27
|
+
ColorVariable:
|
|
28
|
+
enabled: true
|
|
29
|
+
|
|
30
|
+
Comment:
|
|
31
|
+
enabled: true
|
|
32
|
+
style: silent
|
|
33
|
+
|
|
34
|
+
DebugStatement:
|
|
35
|
+
enabled: true
|
|
36
|
+
|
|
37
|
+
DeclarationOrder:
|
|
38
|
+
enabled: false
|
|
39
|
+
|
|
40
|
+
DisableLinterReason:
|
|
41
|
+
enabled: false
|
|
42
|
+
|
|
43
|
+
DuplicateProperty:
|
|
44
|
+
enabled: true
|
|
45
|
+
|
|
46
|
+
ElsePlacement:
|
|
47
|
+
enabled: true
|
|
48
|
+
style: same_line # or 'new_line'
|
|
49
|
+
|
|
50
|
+
EmptyLineBetweenBlocks:
|
|
51
|
+
enabled: true
|
|
52
|
+
ignore_single_line_blocks: true
|
|
53
|
+
|
|
54
|
+
EmptyRule:
|
|
55
|
+
enabled: true
|
|
56
|
+
|
|
57
|
+
ExtendDirective:
|
|
58
|
+
enabled: false
|
|
59
|
+
|
|
60
|
+
FinalNewline:
|
|
61
|
+
enabled: true
|
|
62
|
+
present: true
|
|
63
|
+
|
|
64
|
+
HexLength:
|
|
65
|
+
enabled: true
|
|
66
|
+
style: short # or 'long'
|
|
67
|
+
|
|
68
|
+
HexNotation:
|
|
69
|
+
enabled: true
|
|
70
|
+
style: lowercase # or 'uppercase'
|
|
71
|
+
|
|
72
|
+
HexValidation:
|
|
73
|
+
enabled: true
|
|
74
|
+
|
|
75
|
+
IdSelector:
|
|
76
|
+
enabled: true
|
|
77
|
+
|
|
78
|
+
ImportantRule:
|
|
79
|
+
enabled: true
|
|
80
|
+
|
|
81
|
+
ImportPath:
|
|
82
|
+
enabled: true
|
|
83
|
+
leading_underscore: false
|
|
84
|
+
filename_extension: false
|
|
85
|
+
|
|
86
|
+
Indentation:
|
|
87
|
+
enabled: true
|
|
88
|
+
allow_non_nested_indentation: false
|
|
89
|
+
character: space # or 'tab'
|
|
90
|
+
width: 2
|
|
91
|
+
|
|
92
|
+
LeadingZero:
|
|
93
|
+
enabled: true
|
|
94
|
+
style: include_zero # or 'include_zero'
|
|
95
|
+
|
|
96
|
+
MergeableSelector:
|
|
97
|
+
enabled: true
|
|
98
|
+
force_nesting: true
|
|
99
|
+
|
|
100
|
+
NameFormat:
|
|
101
|
+
enabled: true
|
|
102
|
+
allow_leading_underscore: true
|
|
103
|
+
convention: hyphenated_lowercase # or 'camel_case', or 'snake_case', or a regex pattern
|
|
104
|
+
|
|
105
|
+
NestingDepth:
|
|
106
|
+
enabled: true
|
|
107
|
+
max_depth: 5
|
|
108
|
+
ignore_parent_selectors: false
|
|
109
|
+
|
|
110
|
+
PlaceholderInExtend:
|
|
111
|
+
enabled: false
|
|
112
|
+
|
|
113
|
+
PropertyCount:
|
|
114
|
+
enabled: false
|
|
115
|
+
include_nested: false
|
|
116
|
+
max_properties: 10
|
|
117
|
+
|
|
118
|
+
PropertySortOrder:
|
|
119
|
+
enabled: true
|
|
120
|
+
ignore_unspecified: false
|
|
121
|
+
min_properties: 2
|
|
122
|
+
separate_groups: false
|
|
123
|
+
|
|
124
|
+
PropertySpelling:
|
|
125
|
+
enabled: true
|
|
126
|
+
extra_properties: []
|
|
127
|
+
disabled_properties: []
|
|
128
|
+
|
|
129
|
+
PropertyUnits:
|
|
130
|
+
enabled: true
|
|
131
|
+
global: [
|
|
132
|
+
'ch', 'em', 'ex', 'rem', # Font-relative lengths
|
|
133
|
+
'cm', 'in', 'mm', 'pc', 'pt', 'px', 'q', # Absolute lengths
|
|
134
|
+
'vh', 'vw', 'vmin', 'vmax', # Viewport-percentage lengths
|
|
135
|
+
'deg', 'grad', 'rad', 'turn', # Angle
|
|
136
|
+
'ms', 's', # Duration
|
|
137
|
+
'Hz', 'kHz', # Frequency
|
|
138
|
+
'dpi', 'dpcm', 'dppx', # Resolution
|
|
139
|
+
'%'] # Other
|
|
140
|
+
properties: {}
|
|
141
|
+
|
|
142
|
+
PseudoElement:
|
|
143
|
+
enabled: true
|
|
144
|
+
|
|
145
|
+
QualifyingElement:
|
|
146
|
+
enabled: true
|
|
147
|
+
allow_element_with_attribute: false
|
|
148
|
+
allow_element_with_class: false
|
|
149
|
+
allow_element_with_id: false
|
|
150
|
+
|
|
151
|
+
SelectorDepth:
|
|
152
|
+
enabled: true
|
|
153
|
+
max_depth: 3
|
|
154
|
+
|
|
155
|
+
SelectorFormat:
|
|
156
|
+
enabled: true
|
|
157
|
+
convention: hyphenated_BEM # or 'strict_BEM', or 'hyphenated_BEM', or 'snake_case', or 'camel_case', or a regex pattern
|
|
158
|
+
|
|
159
|
+
Shorthand:
|
|
160
|
+
enabled: true
|
|
161
|
+
allowed_shorthands: [1, 2, 3]
|
|
162
|
+
|
|
163
|
+
SingleLinePerProperty:
|
|
164
|
+
enabled: true
|
|
165
|
+
allow_single_line_rule_sets: true
|
|
166
|
+
|
|
167
|
+
SingleLinePerSelector:
|
|
168
|
+
enabled: true
|
|
169
|
+
|
|
170
|
+
SpaceAfterComma:
|
|
171
|
+
enabled: true
|
|
172
|
+
style: one_space # or 'no_space', or 'at_least_one_space'
|
|
173
|
+
|
|
174
|
+
SpaceAfterPropertyColon:
|
|
175
|
+
enabled: true
|
|
176
|
+
style: one_space # or 'no_space', or 'at_least_one_space', or 'aligned'
|
|
177
|
+
|
|
178
|
+
SpaceAfterPropertyName:
|
|
179
|
+
enabled: true
|
|
180
|
+
|
|
181
|
+
SpaceAfterVariableName:
|
|
182
|
+
enabled: true
|
|
183
|
+
|
|
184
|
+
SpaceAroundOperator:
|
|
185
|
+
enabled: true
|
|
186
|
+
style: one_space # or 'at_least_one_space', or 'no_space'
|
|
187
|
+
|
|
188
|
+
SpaceBeforeBrace:
|
|
189
|
+
enabled: true
|
|
190
|
+
style: space # or 'new_line'
|
|
191
|
+
allow_single_line_padding: false
|
|
192
|
+
|
|
193
|
+
SpaceBetweenParens:
|
|
194
|
+
enabled: true
|
|
195
|
+
spaces: 0
|
|
196
|
+
|
|
197
|
+
StringQuotes:
|
|
198
|
+
enabled: true
|
|
199
|
+
style: double_quotes # or double_quotes
|
|
200
|
+
|
|
201
|
+
TrailingSemicolon:
|
|
202
|
+
enabled: true
|
|
203
|
+
|
|
204
|
+
TrailingWhitespace:
|
|
205
|
+
enabled: true
|
|
206
|
+
|
|
207
|
+
TrailingZero:
|
|
208
|
+
enabled: false
|
|
209
|
+
|
|
210
|
+
TransitionAll:
|
|
211
|
+
enabled: false
|
|
212
|
+
|
|
213
|
+
UnnecessaryMantissa:
|
|
214
|
+
enabled: true
|
|
215
|
+
|
|
216
|
+
UnnecessaryParentReference:
|
|
217
|
+
enabled: true
|
|
218
|
+
|
|
219
|
+
UrlFormat:
|
|
220
|
+
enabled: true
|
|
221
|
+
|
|
222
|
+
UrlQuotes:
|
|
223
|
+
enabled: true
|
|
224
|
+
|
|
225
|
+
VariableForProperty:
|
|
226
|
+
enabled: false
|
|
227
|
+
properties: []
|
|
228
|
+
|
|
229
|
+
VendorPrefix:
|
|
230
|
+
enabled: true
|
|
231
|
+
identifier_list: base
|
|
232
|
+
additional_identifiers: []
|
|
233
|
+
excluded_identifiers: []
|
|
234
|
+
|
|
235
|
+
ZeroUnit:
|
|
236
|
+
enabled: true
|
|
237
|
+
|
|
238
|
+
Compass::*:
|
|
239
|
+
enabled: false
|