forked from interactive-pioneers/conventions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 782 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
layout: default
---
<h1>Developer Conventions</h1>
<p>Conventions for development and workflows across web application development technologies.</p>
<div class="summary">
<h2 class="summary__headline">Summary</h2>
{% for category in site.categories %}
<h3 class="summary__subline">{{ category | first }}</h3>
<ul>
{% for posts in category %}
{% for post in posts %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
{% endfor %}
</ul>
{% endfor %}
</div>
<h2>Various configuration files</h2>
<p>Following configuration files can be used in accordance to the coding conventions:</p>
<ul>
<li><a href="/files/.jshintrc">.jshintrc</a> for <a href="https://github.com/jshint/jshint">JSHint</a></li>
</ul>