Skip to content

Instantly share code, notes, and snippets.

View rliberoff's full-sized avatar
🤪

Rodrigo Liberoff rliberoff

🤪
View GitHub Profile
@rliberoff
rliberoff / gulpfile.js
Last active June 26, 2024 14:57
Gulp file for transpiling SASS (`.scss`) to CSS.
/*
This requires node and the following dev dependencies.
`npm install gulp gulp-sass gulp-purgecss sass --save-dev`
Then execute `gulp`
Remember that any file that starts with underscore ('_') is kind of ignored by convention, and no `.css` file is generated.
For example `_variables.scss`.
*/
@rliberoff
rliberoff / .gitattributes
Created May 28, 2024 11:24
My own and recommended `.gitattributes`
##################################################################################
# Set default behavior to automatically normalize line endings (LF normalization)
##################################################################################
* text=auto
##################################################################################
# Git control files
##################################################################################
*.gitattributes text
@rliberoff
rliberoff / .gitignore
Created May 28, 2024 11:16
My own and recommended `.gitignore`
##########################################################################################
## Ignore Visual Studio temporary files, build results, and files generated by popular
## Visual Studio and VS Code add-ons.
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
##########################################################################################
# User-specific files
*.rsuser
*.suo