ginetta / skeleton

a static site generator for web frontend projects
22 stars 4 forks source link

Ignores phpstorm project files #112

Closed lejoe closed 8 years ago

meodai commented 8 years ago

I think you should have things that are specific to your setup in your global gitignore. Otherwise we will bloat the gitignore of each project with whatever files whatever editor produces: https://help.github.com/articles/ignoring-files/#create-a-global-gitignore

peterbraden commented 8 years ago

I agree with @meodai and would suggest that we don't need any of the current lines either, as they should all be in your global file:

.DS_Store
  *.orig
  .tmp
 +.idea/*
peterbraden commented 8 years ago

Things that are appropriate are things like node_modules or build which are specific to the current project.

meodai commented 8 years ago

@peterbraden yes! We could add a comment to the skeleton readme. That links to the github article.

meodai commented 8 years ago

There is a good default one: https://gist.github.com/octocat/9257657 (I added some NPM stuff)

peterbraden commented 8 years ago

Added to my dotfiles repo :)

https://github.com/peterbraden/dotfiles/commit/35a7dcfac1afc3d96903409ee3263b435940065f

peterbraden commented 8 years ago

If we have consensus, can we close this?

meodai commented 8 years ago

for me we can close it and make a new one where we remove the specific stuff and add a line to the readme?

meodai commented 8 years ago

Did a proposal here: https://github.com/ginetta/skeleton/pull/113

lejoe commented 8 years ago

Oh wow, that escalated quickly. Did not expect that much reaction as there usually isn't on PRs :)

All that to say I agree with you all. We did this PR with @haluvibe partly to test if we can push branches from projects to the skeleton directly. Sorry for the noise.

peterbraden commented 8 years ago