From 170772eee59639a527582f076306c5d8c43318e0 Mon Sep 17 00:00:00 2001 From: Clement G Date: Thu, 16 Apr 2020 19:37:19 +0200 Subject: [PATCH] style(i18n): Apply prettier --- i18n.config.js | 142 ++++++++++++++++++++++++++----------------------- 1 file changed, 75 insertions(+), 67 deletions(-) diff --git a/i18n.config.js b/i18n.config.js index d13f3de..efcbe45 100644 --- a/i18n.config.js +++ b/i18n.config.js @@ -1,74 +1,82 @@ -const fs = require('fs'); -const chalk = require('chalk'); +const fs = require("fs"); +const chalk = require("chalk"); module.exports = { - input: [ - 'app/**/*.{js,jsx}', - // Use ! to filter out files or directories - '!app/**/*.spec.{js,jsx}', - '!app/i18n/**', - '!**/node_modules/**', - ], - output: '.', - options: { - debug: true, - func: { - list: ['i18next.t', 'i18n.t', 't'], - extensions: ['.js', '.jsx'] - }, - trans: { - component: 'Trans', - i18nKey: 'i18nKey', - defaultsKey: 'defaults', - extensions: ['.js', '.jsx'], - fallbackKey: function(ns, value) { - return value; - }, - acorn: { - ecmaVersion: 10, // defaults to 10 - sourceType: 'module', // defaults to 'module' - // Check out https://github.com/acornjs/acorn/tree/master/acorn#interface for additional options - } - }, - lngs: ['en','fr','es'], - ns: [ - 'resource', - 'common' - ], - defaultLng: 'en', - defaultNs: 'resource', - defaultValue: '__STRING_NOT_TRANSLATED__', - resource: { - loadPath: './public/locale/i18n/{{lng}}/{{ns}}.json', - savePath: './public/locale/i18n/{{lng}}/{{ns}}.json', - jsonIndent: 2, - lineEnding: '\n' - }, - nsSeparator: false, // namespace separator - keySeparator: false, // key separator - interpolation: { - prefix: '{{', - suffix: '}}' - } + input: [ + "app/**/*.{js,jsx}", + // Use ! to filter out files or directories + "!app/**/*.spec.{js,jsx}", + "!app/i18n/**", + "!**/node_modules/**" + ], + output: ".", + options: { + debug: true, + func: { + list: ["i18next.t", "i18n.t", "t"], + extensions: [".js", ".jsx"] }, - transform: function customTransform(file, enc, done) { - "use strict"; - const parser = this.parser; - const content = fs.readFileSync(file.path, enc); - let count = 0; - - parser.parseFuncFromString(content, { list: ['i18next._', 'i18next.__'] }, (key, options) => { - parser.set(key, Object.assign({}, options, { - nsSeparator: false, - keySeparator: false - })); - ++count; - }); + trans: { + component: "Trans", + i18nKey: "i18nKey", + defaultsKey: "defaults", + extensions: [".js", ".jsx"], + fallbackKey: function(ns, value) { + return value; + }, + acorn: { + ecmaVersion: 10, // defaults to 10 + sourceType: "module" // defaults to 'module' + // Check out https://github.com/acornjs/acorn/tree/master/acorn#interface for additional options + } + }, + lngs: ["en", "fr", "es"], + ns: ["resource", "common"], + defaultLng: "en", + defaultNs: "resource", + defaultValue: "__STRING_NOT_TRANSLATED__", + resource: { + loadPath: "./public/locale/i18n/{{lng}}/{{ns}}.json", + savePath: "./public/locale/i18n/{{lng}}/{{ns}}.json", + jsonIndent: 2, + lineEnding: "\n" + }, + nsSeparator: false, // namespace separator + keySeparator: false, // key separator + interpolation: { + prefix: "{{", + suffix: "}}" + } + }, + transform: function customTransform(file, enc, done) { + "use strict"; + const parser = this.parser; + const content = fs.readFileSync(file.path, enc); + let count = 0; - if (count > 0) { - console.log(`i18next-scanner: count=${chalk.cyan(count)}, file=${chalk.yellow(JSON.stringify(file.relative))}`); - } + parser.parseFuncFromString( + content, + { list: ["i18next._", "i18next.__"] }, + (key, options) => { + parser.set( + key, + Object.assign({}, options, { + nsSeparator: false, + keySeparator: false + }) + ); + ++count; + } + ); - done(); + if (count > 0) { + console.log( + `i18next-scanner: count=${chalk.cyan(count)}, file=${chalk.yellow( + JSON.stringify(file.relative) + )}` + ); } + + done(); + } };