ESLint plugin for General Translation React Core integration.
npm install @generaltranslation/react-core-linter --save-devimport { defineConfig, globalIgnores } from "eslint/config";
import nextVitals from "eslint-config-next/core-web-vitals";
import nextTs from "eslint-config-next/typescript";
import gtLint from "@generaltranslation/react-core-linter";
const eslintConfig = defineConfig([
...nextVitals,
...nextTs,
gtLint.configs.recommended,
globalIgnores([
".next/**",
"out/**",
"build/**",
"next-env.d.ts",
"eslint.config.*",
]),
]);
export default eslintConfig;See the full documentation for guides and API reference.