The product is branded Hanzo eSign (esign.hanzo.ai, repo hanzoai/esign). Rename all workspace packages @hanzo/sign-* → @hanzo/esign-* (1052 files) and align docker/Dockerfile turbo --scope/--filter to the actual remix package name @hanzo/esign (was a pre-existing mismatch with -remix that broke the build). Protected deps (@hanzo/insights, @hanzo/logo) untouched.
17 lines
397 B
JavaScript
17 lines
397 B
JavaScript
/** @type {import('eslint').Linter.Config} */
|
|
module.exports = {
|
|
root: true,
|
|
extends: ['@hanzo/esign-eslint-config'],
|
|
rules: {
|
|
'@next/next/no-img-element': 'off',
|
|
'no-unreachable': 'error',
|
|
'react-hooks/exhaustive-deps': 'off',
|
|
},
|
|
settings: {
|
|
next: {
|
|
rootDir: ['apps/*/'],
|
|
},
|
|
},
|
|
ignorePatterns: ['lingui.config.ts', 'packages/lib/translations/**/*.js'],
|
|
};
|