File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -25,12 +25,18 @@ accept your pull requests.
25
25
1 . The repo owner will respond to your issue promptly.
26
26
1 . If your proposed change is accepted, and you haven't already done so, sign a Contributor License Agreement (see details above).
27
27
1 . Fork the desired repo, develop and test your code changes.
28
- 1 . Ensure that your code adheres to the existing style in the sample to which you are contributing. Refer to the
29
- [ Google Cloud Platform Samples Style Guide] ( https://github.com/GoogleCloudPlatform/Template/wiki/style.html ) for the
30
- recommended coding standards for this organization. You can run ` npm run jshint ` to match our JavaScript coding standards.
28
+ 1 . Ensure that your code adheres to the existing style in the sample to which you are contributing.
31
29
1 . Ensure that your code has an appropriate set of unit tests which all pass.
32
30
1 . Submit a pull request!
33
31
32
+ ## Style
33
+
34
+ Samples in this repository follow the [ Google JavaScript Style
35
+ Guide] ( http://google.github.io/styleguide/javascriptguide.xml ) . This is
36
+ enforced using [ JSHint] ( http://jshint.com/docs/ ) .
37
+
38
+ You can run ` npm run jshint ` to match our JavaScript coding standards.
39
+
34
40
## Sample template
35
41
36
42
```
88
94
if (module === require.main) {
89
95
program.main(process.argv.slice(2));
90
96
}
91
- ```
97
+ ```
You can’t perform that action at this time.
0 commit comments