Created
September 14, 2017 22:17
-
-
Save ultim8k/7c40de3e7438f91b52e8c0a94c842f04 to your computer and use it in GitHub Desktop.
project dotfiles
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
# editorconfig.org | |
root = true | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
indent_size = 4 | |
indent_style = space | |
insert_final_newline = true | |
trim_trailing_whitespace = true | |
[*.md] | |
trim_trailing_whitespace = false | |
[package.json] | |
# The indent size used in the `package.json` file should not be changed | |
# https://github.com/npm/npm/pull/3180#issuecomment-16336516 | |
indent_size = 2 | |
indent_style = space | |
[*.{yml,json}] | |
indent_size = 2 | |
indent_style = space |
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
* text=auto |
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
# Created by .ignore support plugin (hsz.mobi) | |
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # | |
############ | |
# it's better to unpack these files and commit the raw source | |
# git has its own built in compression methods | |
*.7z | |
*.dmg | |
*.gz | |
*.iso | |
*.jar | |
*.rar | |
*.tar | |
*.zip | |
# Logs and databases # | |
###################### | |
*.log | |
*.sql | |
*.sqlite | |
# OS generated files # | |
###################### | |
.DS_Store | |
.DS_Store? | |
._* | |
.Spotlight-V100 | |
.Trashes | |
ehthumbs.db | |
Thumbs.db | |
# Node.js files # | |
################# | |
node_modules | |
node_modules/* | |
# Non generic editor config # | |
############################# | |
.idea | |
config.codekit | |
sftp-config.json | |
*.swp | |
*.swo | |
# Frontend specific # | |
##################### | |
bower_components | |
bower_components/* | |
*.map | |
*/*.min.js | |
*/*.min.css | |
# Project specific # | |
#################### | |
build | |
build/* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment