style: fix linting issues met Prettier

This commit is contained in:
Lint Action 2025-04-02 18:32:29 +00:00
parent 7e46ce9c5f
commit 0bdee56dc3
10 changed files with 19 additions and 21 deletions

View file

@ -1,4 +1,4 @@
import { Language } from "@dwengo-1/common/util/language"; import { Language } from '@dwengo-1/common/util/language';
export class LearningObjectIdentifier { export class LearningObjectIdentifier {
constructor( constructor(

View file

@ -69,7 +69,7 @@ async function fetchLearningObjects(learningPathId: LearningPathIdentifier, full
nodes.map(async (node) => { nodes.map(async (node) => {
const learningObjectId: LearningObjectIdentifier = { const learningObjectId: LearningObjectIdentifier = {
hruid: node.learningobject_hruid, hruid: node.learningobject_hruid,
language: learningPathId.language language: learningPathId.language,
}; };
return dwengoApiLearningObjectProvider.getLearningObjectById(learningObjectId); return dwengoApiLearningObjectProvider.getLearningObjectById(learningObjectId);
}) })

View file

@ -2,11 +2,7 @@ import dwengoApiLearningObjectProvider from './dwengo-api-learning-object-provid
import { LearningObjectProvider } from './learning-object-provider.js'; import { LearningObjectProvider } from './learning-object-provider.js';
import { envVars, getEnvVar } from '../../util/envVars.js'; import { envVars, getEnvVar } from '../../util/envVars.js';
import databaseLearningObjectProvider from './database-learning-object-provider.js'; import databaseLearningObjectProvider from './database-learning-object-provider.js';
import { import { FilteredLearningObject, LearningObjectIdentifier, LearningPathIdentifier } from '@dwengo-1/common/interfaces/learning-content';
FilteredLearningObject,
LearningObjectIdentifier,
LearningPathIdentifier,
} from '@dwengo-1/common/interfaces/learning-content';
function getProvider(id: LearningObjectIdentifier): LearningObjectProvider { function getProvider(id: LearningObjectIdentifier): LearningObjectProvider {
if (id.hruid.startsWith(getEnvVar(envVars.UserContentPrefix))) { if (id.hruid.startsWith(getEnvVar(envVars.UserContentPrefix))) {

View file

@ -78,7 +78,7 @@ export async function createQuestion(questionDTO: QuestionDTO): Promise<Question
const loId: LearningObjectIdentifier = { const loId: LearningObjectIdentifier = {
...questionDTO.learningObjectIdentifier, ...questionDTO.learningObjectIdentifier,
version: questionDTO.learningObjectIdentifier.version ?? 1, version: questionDTO.learningObjectIdentifier.version ?? 1,
} };
try { try {
await questionRepository.createQuestion({ await questionRepository.createQuestion({
@ -102,10 +102,10 @@ export async function deleteQuestion(questionId: QuestionId): Promise<QuestionDT
return null; return null;
} }
const loId : LearningObjectIdentifier = { const loId: LearningObjectIdentifier = {
...questionId.learningObjectIdentifier, ...questionId.learningObjectIdentifier,
version: questionId.learningObjectIdentifier.version ?? 1 version: questionId.learningObjectIdentifier.version ?? 1,
} };
try { try {
await questionRepository.removeQuestionByLearningObjectAndSequenceNumber(loId, questionId.sequenceNumber); await questionRepository.removeQuestionByLearningObjectAndSequenceNumber(loId, questionId.sequenceNumber);

View file

@ -1,4 +1,4 @@
import { LearningObjectIdentifier } from "@dwengo-1/common/interfaces/learning-content"; import { LearningObjectIdentifier } from '@dwengo-1/common/interfaces/learning-content';
export function isValidHttpUrl(url: string): boolean { export function isValidHttpUrl(url: string): boolean {
try { try {

View file

@ -3,7 +3,7 @@
"include": ["src/**/*.ts"], "include": ["src/**/*.ts"],
"compilerOptions": { "compilerOptions": {
"rootDir": "./src", "rootDir": "./src",
"outDir": "./dist", "outDir": "./dist"
}, },
"references": [ "references": [
{ {

View file

@ -4,7 +4,9 @@
"description": "Common types and utilities for Dwengo-1", "description": "Common types and utilities for Dwengo-1",
"private": true, "private": true,
"type": "module", "type": "module",
"files": [ "./dist" ], "files": [
"./dist"
],
"scripts": { "scripts": {
"build": "tsc --build", "build": "tsc --build",
"clean": "tsc --build --clean", "clean": "tsc --build --clean",

View file

@ -1,4 +1,4 @@
import { Language } from "../util/language"; import { Language } from '../util/language';
export interface Transition { export interface Transition {
default: boolean; default: boolean;

View file

@ -24,7 +24,7 @@ export default [
'**/prettier.config.js', '**/prettier.config.js',
'docs/.venv/**', 'docs/.venv/**',
'prettier.config.js', 'prettier.config.js',
'frontend/prettier.config.js' 'frontend/prettier.config.js',
], ],
files: ['**/*.ts', '**/*.cts', '**.*.mts'], files: ['**/*.ts', '**/*.cts', '**.*.mts'],
}, },
@ -214,6 +214,6 @@ export default [
'no-multi-assign': 'error', 'no-multi-assign': 'error',
'no-nested-ternary': 'error', 'no-nested-ternary': 'error',
'no-object-constructor': 'error', 'no-object-constructor': 'error',
} },
}, },
]; ];

View file

@ -4,7 +4,7 @@
/* Projects */ /* Projects */
// "incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */ // "incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */
"composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */ "composite": true /* Enable constraints that allow a TypeScript project to be used with project references. */,
// "tsBuildInfoFile": "./.tsbuildinfo", /* Specify the path to .tsbuildinfo incremental compilation file. */ // "tsBuildInfoFile": "./.tsbuildinfo", /* Specify the path to .tsbuildinfo incremental compilation file. */
// "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects. */ // "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects. */
// "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */ // "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */
@ -59,10 +59,10 @@
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */ // "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */
/* Emit */ /* Emit */
"declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */ "declaration": true /* Generate .d.ts files from TypeScript and JavaScript files in your project. */,
"declarationMap": true, /* Create sourcemaps for d.ts files. */ "declarationMap": true /* Create sourcemaps for d.ts files. */,
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */ // "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
"sourceMap": true, /* Create source map files for emitted JavaScript files. */ "sourceMap": true /* Create source map files for emitted JavaScript files. */,
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */ // "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
// "noEmit": true, /* Disable emitting files from a compilation. */ // "noEmit": true, /* Disable emitting files from a compilation. */
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */ // "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */