Skip to content

Commit a9d74be

Browse files
rafaelss95mgechev
authored andcommitted
build: update dependencies (#695)
1 parent 2ffe2ea commit a9d74be

21 files changed

Lines changed: 1762 additions & 3808 deletions

CHANGELOG.md

Lines changed: 168 additions & 168 deletions
Large diffs are not rendered by default.

CODE_OF_CONDUCT.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ In the interest of fostering an open and welcoming environment, we as contributo
88

99
Examples of behavior that contributes to creating a positive environment include:
1010

11-
* Using welcoming and inclusive language
12-
* Being respectful of differing viewpoints and experiences
13-
* Gracefully accepting constructive criticism
14-
* Focusing on what is best for the community
15-
* Showing empathy towards other community members
11+
- Using welcoming and inclusive language
12+
- Being respectful of differing viewpoints and experiences
13+
- Gracefully accepting constructive criticism
14+
- Focusing on what is best for the community
15+
- Showing empathy towards other community members
1616

1717
Examples of unacceptable behavior by participants include:
1818

19-
* The use of sexualized language or imagery and unwelcome sexual attention or advances
20-
* Trolling, insulting/derogatory comments, and personal or political attacks
21-
* Public or private harassment
22-
* Publishing others' private information, such as a physical or electronic address, without explicit permission
23-
* Other conduct which could reasonably be considered inappropriate in a professional setting
19+
- The use of sexualized language or imagery and unwelcome sexual attention or advances
20+
- Trolling, insulting/derogatory comments, and personal or political attacks
21+
- Public or private harassment
22+
- Publishing others' private information, such as a physical or electronic address, without explicit permission
23+
- Other conduct which could reasonably be considered inappropriate in a professional setting
2424

2525
## Our Responsibilities
2626

CONTRIBUTING.md

Lines changed: 44 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,22 @@
33
We would love for you to contribute to Codelyzer and help make it even better than it is
44
today! As a contributor, here are the guidelines we would like you to follow:
55

6-
* [Question or Problem?](#question)
7-
* [Issues and Bugs](#issue)
8-
* [Feature Requests](#feature)
9-
* [Submission Guidelines](#submit)
10-
* [Coding Rules](#rules)
11-
* [Commit Message Guidelines](#commit)
6+
- [Question or Problem?](#question)
7+
- [Issues and Bugs](#issue)
8+
- [Feature Requests](#feature)
9+
- [Submission Guidelines](#submit)
10+
- [Coding Rules](#rules)
11+
- [Commit Message Guidelines](#commit)
1212

1313
## <a name="question"></a> Got a Question or Problem?
1414

1515
Please, do not open issues for the general support questions as we want to keep GitHub issues for bug reports and feature requests. You've got much better chances of getting your question answered on [StackOverflow](stackoverflow.com/questions/tagged/codelyzer) where the questions should be tagged with tag `codelyzer`.
1616

1717
StackOverflow is a much better place to ask questions since:
1818

19-
* there are thousands of people willing to help on StackOverflow
20-
* questions and answers stay available for public viewing so your question / answer might help someone else
21-
* StackOverflow's voting system assures that the best answers are prominently visible.
19+
- there are thousands of people willing to help on StackOverflow
20+
- questions and answers stay available for public viewing so your question / answer might help someone else
21+
- StackOverflow's voting system assures that the best answers are prominently visible.
2222

2323
To save your and our time we will be systematically closing all the issues that are requests for general support and redirecting people to StackOverflow.
2424

@@ -37,10 +37,10 @@ Repository. If you would like to _implement_ a new feature, please submit an iss
3737
a proposal for your work first, to be sure that we can use it.
3838
Please consider what kind of change it is:
3939

40-
* For a **Major Feature**, first open an issue and outline your proposal so that it can be
40+
- For a **Major Feature**, first open an issue and outline your proposal so that it can be
4141
discussed. This will also allow us to better coordinate our efforts, prevent duplication of work,
4242
and help you to craft the change so that it is successfully accepted into the project.
43-
* **Small Features** can be crafted and directly [submitted as a Pull Request](#submit-pr).
43+
- **Small Features** can be crafted and directly [submitted as a Pull Request](#submit-pr).
4444

4545
Later, your issue will be closed and tagged with `votes needed`. The [top-👍 feature](https://github.com/mgechev/codelyzer/issues?utf8=%E2%9C%93&q=label%3A%22votes+needed%22+sort%3Areactions-%2B1-desc+) requests will be implemented.
4646

@@ -52,10 +52,10 @@ Before you submit an issue, please search the issue tracker, maybe an issue for
5252

5353
We want to fix all the issues as soon as possible, but before fixing a bug we need to reproduce and confirm it. In order to reproduce bugs we will systematically ask you to provide a minimal reproduction scenario by providing a snippet which breaks any of the codelyzer rules. Also make sure that you list:
5454

55-
* version of Codelyzer used
56-
* version of Angular used
57-
* 3rd-party libraries and their versions
58-
* and most importantly - a use-case that fails
55+
- version of Codelyzer used
56+
- version of Angular used
57+
- 3rd-party libraries and their versions
58+
- and most importantly - a use-case that fails
5959

6060
You can file new issues by filling out our [new issue form](https://github.com/mgechev/codelyzer/issues/new).
6161

@@ -69,17 +69,17 @@ If the fix that you want to submit is part of the metadata associated with any o
6969

7070
Before you submit your Pull Request (PR) consider the following guidelines:
7171

72-
* Search [GitHub](https://github.com/mgechev/codelyzer/pulls) for an open or closed PR
72+
- Search [GitHub](https://github.com/mgechev/codelyzer/pulls) for an open or closed PR
7373
that relates to your submission. You don't want to duplicate effort.
74-
* Make your changes in a new git branch:
74+
- Make your changes in a new git branch:
7575

7676
```shell
7777
git checkout -b my-fix-branch master
7878
```
7979

80-
* Create your patch, **including appropriate test cases**.
81-
* Follow our [Coding Rules](#rules).
82-
* Commit your changes using a descriptive commit message that follows our
80+
- Create your patch, **including appropriate test cases**.
81+
- Follow our [Coding Rules](#rules).
82+
- Commit your changes using a descriptive commit message that follows our
8383
[commit message conventions](#commit). Adherence to these conventions
8484
is necessary because release notes are automatically generated from these messages.
8585

@@ -89,18 +89,18 @@ Before you submit your Pull Request (PR) consider the following guidelines:
8989

9090
Note: the optional commit `-a` command line option will automatically "add" and "rm" edited files.
9191

92-
* Push your branch to GitHub:
92+
- Push your branch to GitHub:
9393

9494
```shell
9595
git push origin my-fix-branch
9696
```
9797

98-
* In GitHub, send a pull request to `codelyzer:master`.
99-
* If we suggest changes then:
98+
- In GitHub, send a pull request to `codelyzer:master`.
99+
- If we suggest changes then:
100100

101-
* Make the required updates.
102-
* Re-run the Codelyzer test and lint suites to ensure tests are still passing and you're following the coding style.
103-
* Rebase your branch and force push to your GitHub repository (this will update your Pull Request):
101+
- Make the required updates.
102+
- Re-run the Codelyzer test and lint suites to ensure tests are still passing and you're following the coding style.
103+
- Rebase your branch and force push to your GitHub repository (this will update your Pull Request):
104104

105105
```shell
106106
git rebase master -i
@@ -114,25 +114,25 @@ That's it! Thank you for your contribution!
114114
After your pull request is merged, you can safely delete your branch and pull the changes
115115
from the main (upstream) repository:
116116
117-
* Delete the remote branch on GitHub either through the GitHub web UI or your local shell as follows:
117+
- Delete the remote branch on GitHub either through the GitHub web UI or your local shell as follows:
118118
119119
```shell
120120
git push origin --delete my-fix-branch
121121
```
122122
123-
* Check out the master branch:
123+
- Check out the master branch:
124124
125125
```shell
126126
git checkout master -f
127127
```
128128
129-
* Delete the local branch:
129+
- Delete the local branch:
130130
131131
```shell
132132
git branch -D my-fix-branch
133133
```
134134
135-
* Update your master with the latest upstream version:
135+
- Update your master with the latest upstream version:
136136
137137
```shell
138138
git pull --ff upstream master
@@ -142,8 +142,8 @@ from the main (upstream) repository:
142142
143143
To ensure consistency throughout the source code, keep these rules in mind as you are working:
144144
145-
* All features or bug fixes **must be tested** by one or more specs (unit-tests).
146-
* We follow [Google's JavaScript Style Guide][js-style-guide].
145+
- All features or bug fixes **must be tested** by one or more specs (unit-tests).
146+
- We follow [Google's JavaScript Style Guide][js-style-guide].
147147

148148
## <a name="commit"></a> Commit Message Guidelines
149149

@@ -191,16 +191,16 @@ If the commit reverts a previous commit, it should begin with `revert:`, followe
191191
192192
Must be one of the following:
193193
194-
* **feat**: A new feature
195-
* **fix**: A bug fix
196-
* **docs**: Documentation only changes
197-
* **style**: Changes that do not affect the meaning of the code (white-space, formatting, missing
194+
- **feat**: A new feature
195+
- **fix**: A bug fix
196+
- **docs**: Documentation only changes
197+
- **style**: Changes that do not affect the meaning of the code (white-space, formatting, missing
198198
semi-colons, etc)
199-
* **refactor**: A code change that neither fixes a bug nor adds a feature
200-
* **perf**: A code change that improves performance
201-
* **test**: Adding missing tests or correcting existing tests
202-
* **build**: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
203-
* **ci**: Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)
199+
- **refactor**: A code change that neither fixes a bug nor adds a feature
200+
- **perf**: A code change that improves performance
201+
- **test**: Adding missing tests or correcting existing tests
202+
- **build**: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
203+
- **ci**: Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)
204204
205205
### Scope
206206
@@ -211,9 +211,9 @@ The scope could be anything specifying place of the commit change. For example
211211
212212
The subject contains succinct description of the change:
213213
214-
* use the imperative, present tense: "change" not "changed" nor "changes"
215-
* don't capitalize first letter
216-
* no dot (.) at the end
214+
- use the imperative, present tense: "change" not "changed" nor "changes"
215+
- don't capitalize first letter
216+
- no dot (.) at the end
217217
218218
### Body
219219

0 commit comments

Comments
 (0)