This file contains hidden or 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
| { | |
| "remove-empty-rulesets": false, | |
| "always-semicolon": true, | |
| "color-case": "lower", | |
| "block-indent": " ", | |
| "color-shorthand": true, | |
| "element-case": "lower", | |
| "eof-newline": true, | |
| "leading-zero": false, | |
| "quotes": "single", |
This file contains hidden or 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
| const fs = require('fs'); | |
| const path = require('path'); | |
| const getLines = file => file.split(/(\r\n|\r|\n)/); | |
| const filterComments = lines => lines.filter(line => line[0] === '#'); | |
| const filterImports = lines => lines.filter(line => line.slice(1).split(' ')[0] === 'import'); | |
| const getImportPathes = lines => lines.map(line => line.slice(1).split(' ')[1]); | |
| const getValidPathes = pathes => pathes.map(_path => _path && _path.match(/^["'](.+)["']/)[1]); | |
| const resolveImportPathes = (importPathes, srcPath) => | |
| importPathes.map((importPath) => { |
This file contains hidden or 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
| Section "InputClass" | |
| Identifier "keyboard defaults" | |
| MatchIsKeyboard "on" | |
| Option "XKbOptions" "caps:escape" | |
| EndSection |
This file contains hidden or 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
| :root { | |
| --command-mode-width: 15px; | |
| --c-bg: #29353B; | |
| --c-bg-link: var(--c-bg); | |
| --c-fg-link: #fff; | |
| --c-fg: #fff; | |
| --c-muted: #8f8f8f; | |
| --c-bg-active: #2DCED0; | |
| --c-fg-active: #00fcff; | |
| --s-link-width: 22px; |
This file contains hidden or 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
| const typeDecorator = (type) => | |
| (target, key, descriptor) => { | |
| let value; | |
| return { | |
| enumerable: true, | |
| get: function () { return value; }, | |
| set: function (newValue) { | |
| const newType = typeof newValue; | |
| if (newType !== type || newType === 'undefined') { |
This file contains hidden or 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
| var icons = { | |
| fullstacks: ` | |
| <svg width="24" height="42" viewBox="0 0 24 42" class="logo"> | |
| <path d="M11.1427 6L0 25.4405L11.1427 36L22.2857 25.4405L11.1427 6ZM11.1427 30.0935L5.5134 24.5712L11.1427 14.7402L16.772 24.5712L11.1427 30.0935Z" fill="#D9D9D9"></path> | |
| <path d="M11.1427 14.7421L5.5134 24.5734L0 25.4427L11.1427 6.0025V14.7421Z" fill="#F2F2F2"></path> | |
| <path d="M22.2857 25.4405L11.1427 36V30.0935L16.772 24.5712L22.2857 25.4405Z" fill="black" fill-opacity="0.15"></path> | |
| </svg>`, | |
| tel: ` | |
| <svg viewBox="0 0 512 512" fill="currentColor" width="20px"> |
This file contains hidden or 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
| const through = require('through2'); | |
| const { join, resolve, dirname, sep } = require('path'); | |
| const { readFileSync } = require('fs'); | |
| const merge = require('merge-deep'); | |
| const plumber = require('gulp-plumber'); | |
| const { chalks } = require('@frontendmonster/dev-utils'); | |
| const ts = require('gulp-typescript'); | |
| const gulp = require('gulp'); | |
| const filter = require('gulp-filter'); | |
| const changed = require('gulp-changed'); |
This file contains hidden or 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
| body { | |
| white-space: pre; | |
| font-family: "Input Mono"; | |
| background-color: #404859; | |
| color: #FFF; | |
| font-size: 13px; | |
| } | |
| .property { | |
| color: #B099E3; |
This file contains hidden or 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
Show hidden characters
| { | |
| // Typescript | |
| "constructor": { | |
| "prefix": "ctor", | |
| "scope": "javascript, typescript", | |
| "body": ["constructor($1) {", " $0", "}"] | |
| }, | |
| "Class": { | |
| "prefix": "!c", | |
| "scope": "javascript, typescript", |
OlderNewer