Skip to content

Commit 0868919

Browse files
author
Jan Sedivy
committed
2 parents 2e4292f + 57ec8af commit 0868919

File tree

6 files changed

+38
-0
lines changed

6 files changed

+38
-0
lines changed

CONTRIBUTING.md

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Contributing to Phở Devstack
2+
3+
We always welcome new contributors to our source code. This is the guide to follow when you want to make a contribution.
4+
5+
## Issues and Bugs
6+
7+
### Found an Issue?
8+
9+
Phở Devstack is based on Gulp and its plugins. Make sure that bug is not related to a plugin or Gulp itself (then submit an issue to their repository).
10+
11+
If you find a bug in Phở Devstack, you can help us by submitting an issue to our [GitHub Issue Tracker][issues] with tag `bug`. Even better you can submit a Pull Request with a fix.
12+
13+
### Want a Feature
14+
15+
You can request a new feature by submitting an issue to our [GitHub Issue Tracker][issues] and tagging it with `enhancement` or `feature`.
16+
17+
### Want a Doc Fix?
18+
19+
All Phở Devstack docs are Markdown files located in [GitHub repository][github]. If you see an issue or want to improve some section, submit a Pull Request.
20+
21+
## Coding style
22+
23+
* Use semicolons;
24+
* Commas last,
25+
* 2 spaces for indentation (no tabs)
26+
* Prefer `'` over `"`
27+
* `"use strict";`
28+
29+
## Frequently Asked Questions
30+
31+
See [the FAQ docs page](/docs/FAQ.md)
32+
33+
[github]: https://github.com/madebysource/pho-devstack/
34+
[issues]: https://github.com/madebysource/pho-devstack/issues?state=open

cache.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use strict';
2+
13
var Cache = function() {
24
this._data = {};
35
};

docs/FAQ.md

Whitespace-only changes.

docs/README.md

Whitespace-only changes.

docs/getting-started.md

Whitespace-only changes.

lib/test-runner.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use strict';
2+
13
var karma = require('karma');
24
var spawn = require('child_process').spawn;
35
var path = require('path');

0 commit comments

Comments
 (0)