##Notes and ideas on css namespacing and formatting (WIP)
####Notes:
- double underscore in BEM is not really nescesarry (to my knowledge)
- camelCase seems to be the best for names containing more than one word
| function decFunct(target) { | |
| target.inheritedAttribute = "stringy thingy"; | |
| } | |
| @decFunct | |
| class decoratedClass {} | |
| console.log(decoratedClass.inheritedAttribute) | |
| //jsfiddle setting Babel + JSX + No-Library (pure JS) |
| git config --global --add color.ui true | |
| #enabling git colors in gnome terminal | |
| git config --global core.longpaths true | |
| #enable longpaths - required for some heavy npm module inception | |
| git config --global core.ignorecase false | |
| #enable detection of case change in files, especially usefull if you work with all OSes. it it still isn't working, try command below | |
| git config --system core.ignorecase false |