Skip to content

Commit cdcef31

Browse files
committedNov 4, 2012
Contribution guidelines
1 parent 6a97147 commit cdcef31

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed
 

‎CONTRIBUTING.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
We are always looking for the quality contributions and will be happy to accept your Pull Requests as long as those adhere to some basic rules:
2+
3+
* Please make sure that your contribution fits well in the project's context:
4+
* we are aiming at rebuilding boostrap directives in pure AngularJS, without any dependencies on any external JavaScript library;
5+
* the only dependency should be boostrap CSS and its markup structure;
6+
* directives should be html-agnostic as much as possible which in practice means:
7+
* templates should be referred to using the `templateUrl` property
8+
* it should be easy to change a default template to a custom one
9+
* directives shouldn't manipulate DOM structure directly (when possible)
10+
* Please assure that you are submitting quality code, specifically make sure that:
11+
* your directive has accompanying tests and all the tests are passing; don't hesitate to contact us (angular-ui@googlegroups.com) if you ned any help with unit testing
12+
* your PR doesn't break the build; check the Travis-CI build status after opening a PR and push corrective commits if anything goes wrong

‎README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,8 @@
1515
* Run test: `grunt test-run`
1616

1717
### Before commit
18-
* Build the whole project: `grunt` - this will run `lint`, `test`, and `concat` targets
18+
* Build the whole project: `grunt` - this will run `lint`, `test`, and `concat` targets
19+
20+
## Contributing to the project
21+
22+
We are always looking for the quality contributions! Please check the CONTRIBUTING.md for the contribution guidelines.

0 commit comments

Comments
 (0)