From f31abe7cb3582e61fa36808ef53ccd207535d53d Mon Sep 17 00:00:00 2001 From: Alf Eaton Date: Wed, 19 May 2021 18:36:27 +0100 Subject: [PATCH] Tidy and format --- .../test/acceptance/scripts/settings.test.js | 114 +++++++++--------- 1 file changed, 57 insertions(+), 57 deletions(-) diff --git a/services/clsi/test/acceptance/scripts/settings.test.js b/services/clsi/test/acceptance/scripts/settings.test.js index 2f0cc4a10b..e960ce8b71 100644 --- a/services/clsi/test/acceptance/scripts/settings.test.js +++ b/services/clsi/test/acceptance/scripts/settings.test.js @@ -1,64 +1,64 @@ -/* eslint-disable - no-path-concat, -*/ -// TODO: This file was created by bulk-decaffeinate. -// Fix any style issues and re-enable lint. -const Path = require("path"); +const Path = require('path') module.exports = { - // Options are passed to Sequelize. - // See http://sequelizejs.com/documentation#usage-options for details - mysql: { - clsi: { - database: "clsi", - username: "clsi", - password: null, - dialect: "sqlite", - storage: Path.resolve("db.sqlite") - } - }, + // Options are passed to Sequelize. + // See http://sequelizejs.com/documentation#usage-options for details + mysql: { + clsi: { + database: 'clsi', + username: 'clsi', + password: null, + dialect: 'sqlite', + storage: Path.resolve('db.sqlite'), + }, + }, - path: { - compilesDir: Path.resolve(__dirname + "/../../../compiles"), - clsiCacheDir: Path.resolve(__dirname + "/../../../cache"), - // synctexBaseDir: (project_id) -> Path.join(@compilesDir, project_id) - synctexBaseDir() { return "/compile"; }, - sandboxedCompilesHostDir: process.env.SANDBOXED_COMPILES_HOST_DIR - }, + path: { + // eslint-disable-next-line no-path-concat + compilesDir: Path.resolve(__dirname + '/../../../compiles'), + // eslint-disable-next-line no-path-concat + clsiCacheDir: Path.resolve(__dirname + '/../../../cache'), + // synctexBaseDir: (project_id) -> Path.join(@compilesDir, project_id) + synctexBaseDir() { + return '/compile' + }, + sandboxedCompilesHostDir: process.env.SANDBOXED_COMPILES_HOST_DIR, + }, - clsi: { - // strace: true - // archive_logs: true - commandRunner: "docker-runner-sharelatex", - latexmkCommandPrefix: ["/usr/bin/time", "-v"], // on Linux - docker: { - image: process.env.TEXLIVE_IMAGE || "texlive-full:2017.1-opt", - env: { - PATH: "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/texlive/2017/bin/x86_64-linux/", - HOME: "/tmp" - }, - modem: { - socketPath: false - }, - user: process.env.SIBLING_CONTAINER_USER ||"111" - } - }, + clsi: { + // strace: true + // archive_logs: true + commandRunner: 'docker-runner-sharelatex', + latexmkCommandPrefix: ['/usr/bin/time', '-v'], // on Linux + docker: { + image: process.env.TEXLIVE_IMAGE || 'texlive-full:2017.1-opt', + env: { + PATH: + '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/texlive/2017/bin/x86_64-linux/', + HOME: '/tmp', + }, + modem: { + socketPath: false, + }, + user: process.env.SIBLING_CONTAINER_USER || '111', + }, + }, - internal: { - clsi: { - port: 3013, - load_port: 3044, - host: "localhost" - } - }, + internal: { + clsi: { + port: 3013, + load_port: 3044, + host: 'localhost', + }, + }, - apis: { - clsi: { - url: "http://localhost:3013" - } - }, + apis: { + clsi: { + url: 'http://localhost:3013', + }, + }, - smokeTest: false, - project_cache_length_ms: 1000 * 60 * 60 * 24, - parallelFileDownloads:1 -}; + smokeTest: false, + project_cache_length_ms: 1000 * 60 * 60 * 24, + parallelFileDownloads: 1, +}