sourcegraph / appdash

Application tracing system for Go, based on Google's Dapper.
https://sourcegraph.com
Other
1.72k stars 137 forks source link

traceapp: use a standard 2-space indention in HTML template files. #49

Closed slimsag closed 9 years ago

slimsag commented 9 years ago

Prior to this change there was a mixed use of:

<html>
  <div>
    <strong>foo!</strong>
  </div>
</html>
<html>
 <div>
   <strong>foo!</strong>
 </div>
</html>

I chose to go with 2-space indention due to that being used most prominently in the code base already. The usage of tabs (code I wrote) was accidental.

After this change we use just two-space indention for all HTML/CSS/JS code.