unitaryfund/metriq-api

Uphold consistent use of quotation marks

Closed this issue · 0 comments

This is a stylistic task, and it's one that a linter will probably catch, but in case that isn't set up or it doesn't, one thing we should be consistent with stylistically is the quotation marks. I believe in JS, single-quotes are preferable to double-quotes.

For example, some lines:

const MongooseService = require( "./mongooseService" );

const UserModel = require( "../model/userModel" );

const e = require("express");

contain double-quotes, where they should instead probably prefer single-quotes.