UNPKG

renovate

Version:

Automated dependency updates. Flexible so you don't need to be.

34 lines (33 loc) 1.16 kB
import { GlobalConfig } from "../../config/global.js"; import { logger } from "../../logger/index.js"; import upath from "upath"; import { parse } from "editorconfig"; //#region lib/util/json-writer/editor-config.ts var EditorConfig = class EditorConfig { static async getCodeFormat(fileName) { const localDir = GlobalConfig.get("localDir"); try { const knownProps = await parse(upath.join(localDir, fileName)); return { indentationSize: EditorConfig.getIndentationSize(knownProps), indentationType: EditorConfig.getIndentationType(knownProps), maxLineLength: knownProps.max_line_length }; } catch (err) { logger.warn({ err }, "Failed to parse editor config"); return {}; } } static getIndentationType(knownProps) { const { indent_style: indentStyle } = knownProps; if (indentStyle === "tab") return "tab"; if (indentStyle === "space") return "space"; } static getIndentationSize(knownProps) { const indentSize = Number(knownProps.indent_size); if (!Number.isNaN(indentSize) && Number.isInteger(indentSize)) return indentSize; } }; //#endregion export { EditorConfig }; //# sourceMappingURL=editor-config.js.map