diff --git a/.eslintignore b/.eslintignore index 923fab4..4462152 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,6 +1,5 @@ -dist -build -docs -node_modules +dist/ +docs/ +node_modules/ .eslintrc.js tsconfig.json \ No newline at end of file diff --git a/.eslintrc.js b/.eslintrc.js index 7b5a38d..51bade8 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -5,6 +5,6 @@ module.exports = { extends: [ "eslint:recommended", "plugin:@typescript-eslint/recommended", - "eslint-config-prettier", + "prettier", ], }; diff --git a/src/types.ts b/src/types.ts index 83f3567..f024057 100644 --- a/src/types.ts +++ b/src/types.ts @@ -179,8 +179,8 @@ export interface Lesson { pupil_note_raw: string; } export type LessonsResponse = Array; +// Not sure what to call this export interface LessonPupilBehaviour { - // Not sure what to call this reason: string; score: number; icon: string;