Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
17e2729
added test coverage using nyc
jankapunkt Oct 10, 2021
a88bb4d
Create tests.yml
jankapunkt Oct 10, 2021
917b4b9
uncomment line for coverage test until cov is added
jankapunkt Oct 10, 2021
dcd8a3d
ci change push branch dev to development
jankapunkt Oct 10, 2021
cf1ab06
Merge pull request #14 from node-oauth/add-ci
HappyZombies Oct 10, 2021
b7b8af6
Merge pull request #13 from node-oauth/test-coverage
HappyZombies Oct 10, 2021
4a9eb7b
docs: added contribution guide draft
jankapunkt Oct 10, 2021
534b5e7
Remove statuses, use http.STATUS_CODES
HappyZombies Oct 10, 2021
1722039
updated development guidelines
jankapunkt Oct 11, 2021
6a0c93c
contribution guidelines added guiding principles
jankapunkt Oct 11, 2021
c833a37
pull request template added
jankapunkt Oct 11, 2021
de41dc7
docs removed maintainers section from contribution guide
jankapunkt Oct 11, 2021
4d893e4
Merge pull request #26 from node-oauth/feature.http-status
HappyZombies Oct 11, 2021
e650264
removed jshint added eslint
jwerre Oct 11, 2021
9ebf817
merge with development branch
jwerre Oct 11, 2021
18d2404
removed should added chai
jwerre Oct 11, 2021
05b8944
removed some log statements
jwerre Oct 11, 2021
0cf3b11
removed 'no-prototype-builtins' from eslint
jwerre Oct 11, 2021
ca47721
docs: add commit message convention and coding rules
oklas Oct 12, 2021
b4e344d
tests validator is tested for all unicode ranges
jankapunkt Oct 12, 2021
f57f4c3
validator is add missing variable in is.uchar
jankapunkt Oct 12, 2021
615bd75
tests validator also test for multiple characters
jankapunkt Oct 12, 2021
c0e4ef1
eslint enable no-control-regex and disable only in validator
jankapunkt Oct 12, 2021
9775b39
tests validator is increase timeout
jankapunkt Oct 12, 2021
60bad87
docs: lightly softify commit convention requirements
oklas Oct 12, 2021
5a98700
refactor: update mocha to latest version #17
HappyZombies Oct 12, 2021
4003209
removed tab in token-model_test.js
jwerre Oct 12, 2021
a6c257f
Merge pull request #29 from node-oauth/chai
HappyZombies Oct 12, 2021
391fbef
added chai to is_test.js
jwerre Oct 12, 2021
2e4d14f
removed jshint
jwerre Oct 12, 2021
7a3a9b0
ci (dev-infra): removed travis-ci file #34
jankapunkt Oct 13, 2021
50caf40
ci (dev-infra): add matrix strategy to test multiple node versions
jankapunkt Oct 13, 2021
0bb1b23
Merge pull request #32 from oklas/contrib
HappyZombies Oct 13, 2021
df4dc62
Pulled from development
HappyZombies Oct 13, 2021
66d46be
Ran npm install, add mocharc.yml file
HappyZombies Oct 13, 2021
fe789aa
changed config file
HappyZombies Oct 13, 2021
81aac3a
Merge pull request #35 from node-oauth/feature-ci-multiple-targets
HappyZombies Oct 13, 2021
12f0a80
disallow the use of console
jwerre Oct 13, 2021
c0196f3
Merge pull request #30 from node-oauth/lint
HappyZombies Oct 13, 2021
79bcb7c
resolved package conflicts
jwerre Oct 13, 2021
8bb0dcc
Merge pull request #33 from node-oauth/feature.update-mocha
HappyZombies Oct 13, 2021
4985ca7
docs: correct types and available scripts and add info about removing…
jankapunkt Oct 13, 2021
fcec276
docs: add pull request template
jankapunkt Oct 13, 2021
3dc2f6d
Merge pull request #18 from node-oauth/contribution-guidelines
HappyZombies Oct 13, 2021
0d3f621
test: Update sinon to latest version #17
HappyZombies Oct 13, 2021
b1676fb
Merge pull request #39 from node-oauth/feature.sinon-update
HappyZombies Oct 13, 2021
f8c398f
build(packaging): update minimal supported node version to 12 #34
jankapunkt Oct 14, 2021
769878d
fix(security): use sha256 for token generation #38
jankapunkt Oct 14, 2021
26b3eb3
Merge pull request #41 from node-oauth/update-node-version
HappyZombies Oct 14, 2021
ff6a450
Merge pull request #43 from node-oauth/fix-sha1-to-sha256
HappyZombies Oct 14, 2021
8e05cb5
Remove lodash dependency (#37)
jorenvandeweyer Oct 14, 2021
156b34f
ci(dev-infra): add codeql semantic analysis #16 #36
jankapunkt Oct 15, 2021
be8121b
ci(dev-infra): make codeql scane on push and pr equal #16 #36
jankapunkt Oct 15, 2021
100e8ae
refactor:Fix typos and clean up package.json and package-lock.json
HappyZombies Oct 15, 2021
ffb28c3
Merge pull request #46 from node-oauth/feature.small-cleanup
HappyZombies Oct 15, 2021
cfa907d
Merge pull request #45 from node-oauth/feature-ci-static-semantic-ana…
HappyZombies Oct 19, 2021
002e380
release: up semver and update changelog
HappyZombies Nov 4, 2021
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
disallow the use of console
  • Loading branch information
jwerre committed Oct 13, 2021
commit 12f0a80d77f576787c0779403efb5205e497428c
54 changes: 28 additions & 26 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -15,31 +15,33 @@
}
},
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-console": "off",
"no-unused-vars": [
"error",
{
"vars": "all",
"args": "none",
"ignoreRestSiblings": false
}
]
}
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-console": [
"error"
],
"no-unused-vars": [
"error",
{
"vars": "all",
"args": "none",
"ignoreRestSiblings": false
}
]
}
}