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
{ | |
"js": { | |
"single_quotes": true, | |
"log_types" : [ | |
"assert", | |
"clear", | |
"count", | |
"debug", | |
"dir", | |
"error", |
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
export class Util { | |
private observer: MutationObserver; | |
constructor() { | |
/** CODE */ | |
} | |
/** | |
* Save items in browser storage. | |
* @param {string} name |
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
const gulp = require('gulp'); | |
const sass = require('gulp-sass'); | |
const jshint = require('gulp-jshint'); | |
const uglify = require('gulp-uglify'); | |
const browserSync = require('browser-sync'); | |
const sourcemaps = require('gulp-sourcemaps'); | |
const autoprefixer = require('gulp-autoprefixer'); | |
const reload = browserSync.reload; | |
const notify = require('gulp-notify'), | |
const plumber = require('gulp-plumber'); |
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
<div class="hello-week"> | |
<div class="hello-week__header"> | |
<button class="demo-prev">Prev</button> | |
<div class="hello-week__label"></div> | |
<button class="demo-next">Next</button> | |
</div> | |
<div class="hello-week__week"></div> | |
<div class="hello-week__month"></div> | |
</div> |
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
@function sqrt($r) { | |
$x0: 1; | |
$x1: $x0; | |
@for $i from 1 through 10 { | |
$x1: $x0 - ($x0 * $x0 - abs($r)) / (2 * $x0); | |
$x0: $x1; | |
} | |
@return $x1; |
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
{ | |
"folders": | |
[ | |
{ | |
"path": "/Users/mauroreisvieira/Documents/FOLDER", | |
"folder_exclude_patterns": | |
[ | |
".git", | |
"tests", | |
"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
[ | |
{ "keys": ["alt+shift+f"], "command": "toggle_distraction_free" }, | |
{ "keys": ["command+alt+up"], "command": "fold" }, | |
{ "keys": ["command+alt+down"], "command": "unfold" }, | |
{ "keys": ["command+shift+r"], "command": "goto_symbol_in_project" }, | |
{ "keys": ["command+i"], "command": "reindent", "args": { "single_line": false } }, | |
{ "keys": ["command+shift+a"], "command": "align_tab", "args" : {"live_preview" : true} }, | |
{ | |
"keys": ["command+t"], | |
"command": "open_terminal", |
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
{ | |
"close_windows_when_empty": true, | |
"color_scheme": "Packages/Meetio/schemes/Meetio-Lighter.sublime-color-scheme", | |
"ensure_newline_at_eof_on_save": true, | |
"font_face": "Fira Code", | |
"font_options": | |
[ | |
"gray_antialias", | |
"subpixel_antialias" | |
], |
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
@mixin mobile($max-w : $mobile) { | |
@media (max-width: $max-w) { | |
@content; | |
} | |
} | |
@mixin tablet($max-w : $tablet) { | |
@media (max-width: $max-w) { | |
@content; |
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
const webpack = require('webpack'); | |
const path = require('path'); | |
const extractTextPlugin = require('extract-text-webpack-plugin'); | |
const UglifyJsPlugin = require('uglifyjs-webpack-plugin'); | |
module.exports = { | |
entry : { | |
[NAME_SAVED_FILE]: './src/scripts/[NAME_FILE].ts' | |
}, | |
output: { |
OlderNewer