mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
5cc8340e05
* chore: merge main branch * chore: remove document plugins * chore: add color generator * ci: tests
18 lines
537 B
JavaScript
18 lines
537 B
JavaScript
export async function defineConfig(env) {
|
|
const { default: pluginJson } = await env.$import(
|
|
'https://cdn.jsdelivr.net/gh/samuelstroschein/inlang-plugin-json@2/dist/index.js'
|
|
);
|
|
|
|
const { default: standardLintRules } = await env.$import(
|
|
'https://cdn.jsdelivr.net/gh/inlang/standard-lint-rules@2/dist/index.js'
|
|
);
|
|
|
|
return {
|
|
referenceLanguage: 'en',
|
|
plugins: [pluginJson({
|
|
pathPattern: './frontend/appflowy_flutter/assets/translations/{language}.json',
|
|
variableReferencePattern: ["@:"]
|
|
}), standardLintRules()]
|
|
};
|
|
}
|