Last active
July 23, 2016 15:21
-
-
Save tsvetkovpro/ed4eb7ef15f38d5d1e3a8a946868b2f4 to your computer and use it in GitHub Desktop.
settings:
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
{ | |
"maxerr": 25, | |
"latedef": "nofunc", | |
"browser": true, | |
"node": true, | |
"globals": ["$", "Prism"], | |
"indent": 2, | |
"camelcase": true, | |
"newcap": true, | |
"undef": true, | |
"multistr": true, | |
"esnext": true, | |
"noyield": true, | |
"devel": true, | |
"loopfunc": true, | |
"-W004": true, | |
"-W030": true, | |
"-W078": true | |
} |
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
create gulpfile for building system | |
cmd windows path: | |
c:\Program Files (x86)\SmartGit\git\bin\;.\node_modules.bin;..\node_modules.bin;....\node_modules.bin | |
install plugin: | |
npm i -D gulp-plugin_name |
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
/gulp-project.sublime-project | |
/gulp-project.sublime-workspace | |
/package.json | |
/node_modules | |
/.idea |
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
git init | |
git add . | |
git commit -m "first commit" | |
git remote add orign [email protected]:/.../.git | |
git push -u orign master | |
git branch testing | |
git checkout testing | |
git checkout master | |
git merge testing |
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
# custom PhpStorm VM options | |
-server | |
-Xms256m | |
-Xmx1024m | |
-XX:MaxPermSize=250m | |
-XX:ReservedCodeCacheSize=240m | |
-XX:+UseConcMarkSweepGC | |
-XX:SoftRefLRUPolicyMSPerMB=50 | |
-ea | |
-Dsun.io.useCanonCaches=false | |
-Djava.net.preferIPv4Stack=true | |
-XX:+HeapDumpOnOutOfMemoryError | |
-XX:-OmitStackTraceInFastThrow | |
# my option | |
-Dawt.useSystemAAFontSettings=lcd | |
-Dawt.java2d.opengl=true | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment