Skip to content

Commit

Permalink
wip: fixing lint errors
Browse files Browse the repository at this point in the history
refs: BLAIS5-3514
  • Loading branch information
motalm committed Oct 13, 2023
1 parent 4c54279 commit 330537d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,16 @@
"error",
"always"
],
"import/no-extraneous-dependencies": [
"error", {
"devDependencies": true
}
],
"@typescript-eslint/no-explicit-any": "error",
"react/react-in-jsx-scope": "off",
"react/require-default-props": "off",
"no-spaced-func": "off",
"max-len": ["error", { "code": 180 }],
"no-undef": "off"
},
"overrides": [
Expand Down
3 changes: 2 additions & 1 deletion server/tests/server.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,8 @@ defineFeature(feature, test => {
const selectedSurvey = response[0].questionnaires;
expect(selectedSurvey).toHaveLength(1);

const questionnaireListReturned = [QuestionnaireHelper.Questionnaire(questionnaireName, true, "July 2020", "OPN", "https://external-web-url/OPN2007T?LayoutSet=CATI-Interviewer_Large")];
const questionnaireListReturned = [QuestionnaireHelper.Questionnaire(
questionnaireName, true, "July 2020", "OPN", "https://external-web-url/OPN2007T?LayoutSet=CATI-Interviewer_Large")];

expect(selectedSurvey).toEqual(questionnaireListReturned);
});
Expand Down

0 comments on commit 330537d

Please sign in to comment.