Skip to content

Commit

Permalink
Merge pull request #954 from CVEProject/jd-714
Browse files Browse the repository at this point in the history
Resolves #714 Updated POST /cve/{id}/cna to handle missing org names consistently with POST /cve/{id}/reject
brettp authored Dec 16, 2022
2 parents 11e75ef + f3650cb commit a05a3d4
Showing 7 changed files with 2,162 additions and 2,296 deletions.
16 changes: 8 additions & 8 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -4,17 +4,17 @@ module.exports = {
node: true
},
extends: [
"plugin:mocha/recommended",
"standard"
'plugin:mocha/recommended',
'standard'
],
parserOptions: {
ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features
sourceType: "module" // Allows for the use of imports
ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features
sourceType: 'module' // Allows for the use of imports
},
plugins: [
"mocha"
'mocha'
],
"rules": {
"mocha/no-mocha-arrows": "off"
rules: {
'mocha/no-mocha-arrows': 'off'
}
};
}
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [16.x]

steps:
- name: Checkout Repository
@@ -26,7 +26,7 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [16.x]

steps:
- name: Checkout Repository
@@ -43,7 +43,7 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [16.x]

steps:
- name: Checkout Repository
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [16.x]

steps:
- name: Checkout Repository
@@ -26,7 +26,7 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [16.x]

steps:
- name: Checkout Repository
Loading

0 comments on commit a05a3d4

Please sign in to comment.