mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-06 16:24:08 -06:00
21 lines
502 B
JavaScript
21 lines
502 B
JavaScript
module.exports = {
|
|
extends: ["@formbricks/eslint-config/legacy-next.js"],
|
|
ignorePatterns: ["**/package.json", "**/tsconfig.json"],
|
|
overrides: [
|
|
{
|
|
files: ["locales/*.json"],
|
|
plugins: ["i18n-json"],
|
|
rules: {
|
|
"i18n-json/identical-keys": [
|
|
"error",
|
|
{
|
|
filePath: require("path").join(__dirname, "locales", "en-US.json"),
|
|
checkExtraKeys: false,
|
|
checkMissingKeys: true,
|
|
},
|
|
],
|
|
},
|
|
},
|
|
],
|
|
};
|