-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(Nora v2.0.0-stable major update) Merge pull request #152 from Sandak…
…an/major-release
- Loading branch information
Showing
238 changed files
with
18,696 additions
and
28,732 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
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
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
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
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,40 @@ | ||
# Contributing Guide for Nora | ||
|
||
First off, Thank you for deciding to contribute to Nora. It's people like you that make Nora live a long time. | ||
|
||
Following these guidelines helps to communicate that you respect the time of the developers managing and developing this open source project. In return, they should reciprocate that respect in addressing your issue, assessing changes, and helping you finalize your pull requests. | ||
|
||
## Types of contributions | ||
|
||
> Nora is an open source project and I'd love to receive contributions from the community. These can be bug reports, feature requests or writing code to resolve already existing issues. | ||
## Ground Rules | ||
|
||
> **Responsibilities** | ||
> | ||
> - Ensure compatibility for Windows and Linux for every change that's accepted. | ||
> - Create issues for any major changes and enhancements that you wish to make. Discuss things transparently and get community feedback. | ||
> - Keep feature versions as small as possible, preferably one new feature per version. | ||
## Getting started | ||
|
||
> First, always check the Issues panel whether your issue has been already added by another contributor. | ||
#### **For something that is bigger than a few lines:** | ||
|
||
> 1. Create your own fork of the code | ||
> 2. Do the changes in your fork | ||
> 3. If you like the change and think the project could use it, create a pull request. | ||
> 4. Be sure you have followed the code style for the project. | ||
### How to report a bug | ||
|
||
> You can follow the [bug report template](./ISSUE_TEMPLATE/bug_report.md) when adding a new bug report for Nora. | ||
### How to suggest a feature or enhancement | ||
|
||
> You can follow the [feature request template](./ISSUE_TEMPLATE/bug_report.md) when adding new feature request for Nora. | ||
<br> | ||
|
||
##### Created this template with the help of [Nayafia's Contributing Template](https://github.com/nayafia/contributing-template/blob/master/CONTRIBUTING-template.md). |
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,7 @@ | ||
# Fixes | ||
|
||
## Proposed Changes | ||
|
||
- | ||
- | ||
- |
Empty file.
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
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,36 @@ | ||
name: Lint | ||
|
||
on: | ||
# Trigger the workflow on push or pull request, | ||
# but only for the main branch | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
run-linters: | ||
name: Run linters | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out Git repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
check-latest: true | ||
|
||
# ESLint and Prettier must be in `package.json` | ||
- name: Install Node.js dependencies | ||
run: npm ci | ||
|
||
- name: Run linters | ||
uses: wearerequired/lint-action@v2 | ||
with: | ||
eslint: true | ||
prettier: true |
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 |
---|---|---|
|
@@ -23,3 +23,4 @@ npm-debug.log.* | |
*.css.d.ts | ||
*.sass.d.ts | ||
*.scss.d.ts | ||
lint_results.txt |
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,7 @@ | ||
**/.git | ||
**/.svn | ||
**/.hg | ||
**/node_modules | ||
**/.erb/dll | ||
**/thunder-tests | ||
**/release |
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,11 @@ | ||
{ | ||
"singleQuote": true, | ||
"overrides": [ | ||
{ | ||
"files": [".prettierrc", ".eslintrc"], | ||
"options": { | ||
"parser": "json" | ||
} | ||
} | ||
] | ||
} |
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
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
Oops, something went wrong.