Skip to content

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
howardwu authored Aug 16, 2022
1 parent bb6e359 commit 418d526
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions parser/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ const parseMD = require('parse-md').default;
* arc: 1
* title: Template
* authors: The Aleo Team <[email protected]>
* discussion:
* topic: Meta
* status: Living
* reviewers: Howard Wu <[email protected]>
* created: 2020-02-07
*/
const requiredMetadata = ['arc', 'title', 'authors', 'topic', 'status', 'reviewers', 'created'];
const requiredMetadata = ['arc', 'title', 'authors', 'discussion', 'topic', 'status', 'created'];

const topics = ['Meta', 'Protocol', 'Network', 'Application'];
const topics = ['Protocol', 'Network', 'Application', 'Meta'];

const statuses = ['Idea', 'Draft', 'Active', 'Withdrawn', 'Accepted', 'Rejected', 'Final', 'Deprecated', 'Living'];
const statuses = ['Draft', 'Active', 'Withdrawn', 'Accepted', 'Rejected', 'Final', 'Deprecated', 'Living'];

// Executes sanity checks for CI.
const ci = () => {
Expand Down Expand Up @@ -130,9 +130,9 @@ const checkArcReadmeContent = async (arcDirectory) => {
* arc: 1
* title: Template
* authors: The Aleo Team <[email protected]>
* discussion:
* topic: Meta
* status: Living
* reviewers: Howard Wu <[email protected]>
* created: 2020-02-07
*/

Expand Down

0 comments on commit 418d526

Please sign in to comment.