-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c9f3d6b
commit f11a4b0
Showing
4 changed files
with
77 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# How to contribute | ||
|
||
Thank you for your interest in contributing! While this project originated at InterSystems, it is our hope that the community will continue to extend and enhance it. | ||
|
||
## Submitting changes | ||
|
||
If you have made a change that you would like to contribute back to the community, please send a [GitHub Pull Request](/pull/new/master) explaining it. If your change fixes an issue that you or another user reported, please mention it in the pull request. You can find out more about pull requests [here](http://help.github.com/pull-requests/). | ||
|
||
## Coding conventions | ||
|
||
Generally speaking, just try to match the conventions you see in the code you are reading. For this project, these include: | ||
|
||
* Do not use shortened command and function names - e.g., `s` instead of `set`, `$p` instead of `$piece` | ||
* One command per line | ||
* Do not use dot syntax | ||
* Indentation with tabs | ||
* camelCase class names | ||
* PascalCase method names | ||
* Avoid using postconditionals | ||
* Formal parameter names start with `p` | ||
* Always check %Status return values | ||
* Generally, throw and catch exceptions rather than using %Status |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2022 InterSystems Corporation | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# isc.codetidy | ||
isc.codetidy provides server-side linting and advice to enforce and encourage reasonable ObjectScript coding standards. | ||
|
||
## Getting Started | ||
Note: a minimum platform version of InterSystems IRIS 2018.1 is required. | ||
|
||
### Installation: ZPM | ||
|
||
If you already have the [ObjectScript Package Manager](https://openexchange.intersystems.com/package/ObjectScript-Package-Manager-2), installation is as easy as: | ||
``` | ||
zpm "install isc.codetidy" | ||
``` | ||
|
||
## [Documentation](documentation.md) | ||
See [Documentation](documentation.md) | ||
|
||
## Contributing | ||
Please read [contributing](https://github.com/intersystems/isc-codetidy/blob/master/CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests to us. | ||
|
||
## Versioning | ||
We use [SemVer](http://semver.org/) for versioning. Declare your dependencies using the InterSystems package manager for the appropriate level of risk. | ||
|
||
## Authors | ||
* **Sarmishta Velury** - [isc-svelury](http://github.com/isc-svelury) | ||
* **Tim Leavitt** - [isc-tleavitt](http://github.com/isc-tleavitt) | ||
* InterSystems TrakCare Development | ||
|
||
See also the list of [contributors](https://github.com/intersystems/isc-codetidy/graphs/contributors) who participated in this project. | ||
|
||
## License | ||
This project is licensed under the MIT License - see the [LICENSE](https://github.com/intersystems/isc-codetidy/blob/master/LICENSE) file for details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters