hatch-surf/node_modules/@next/eslint-plugin-next/dist/index.d.ts
Riley Zhang df378d33ef
Some checks failed
CI / go (push) Waiting to run
CI / docker (push) Waiting to run
CI / lint-go (push) Waiting to run
CI / lint-docs (push) Waiting to run
CI / check-paperclip (push) Waiting to run
Deploy static site / Deploy to GitHub Pages (push) Has been cancelled
Deploy static site / Deploy via Docker to hatch.surf (push) Has been cancelled
Merge GitHub main into Gitea repo (allow unrelated histories)
Resolved conflicts by taking GitHub versions for:
- .dockerignore, .gitignore, Dockerfile, README.md, docker-compose.yml

Kept deploy.sh updated to:
- Pull from GitHub (primary source)
- Push to Gitea (push-mirror)
- Build from site/ directory (GitHub structure)

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-06-25 05:20:46 +02:00

61 lines
2.4 KiB
TypeScript

import type { Linter, Rule } from 'eslint';
declare const plugin: {
meta: {
name: string;
};
rules: {
'google-font-display': Rule.RuleModule;
'google-font-preconnect': Rule.RuleModule;
'inline-script-id': Rule.RuleModule;
'next-script-for-ga': Rule.RuleModule;
'no-assign-module-variable': Rule.RuleModule;
'no-async-client-component': Rule.RuleModule;
'no-before-interactive-script-outside-document': Rule.RuleModule;
'no-css-tags': Rule.RuleModule;
'no-document-import-in-page': Rule.RuleModule;
'no-duplicate-head': Rule.RuleModule;
'no-head-element': Rule.RuleModule;
'no-head-import-in-document': Rule.RuleModule;
'no-html-link-for-pages': Rule.RuleModule;
'no-img-element': Rule.RuleModule;
'no-page-custom-font': Rule.RuleModule;
'no-script-component-in-head': Rule.RuleModule;
'no-styled-jsx-in-document': Rule.RuleModule;
'no-sync-scripts': Rule.RuleModule;
'no-title-in-document-head': Rule.RuleModule;
'no-typos': Rule.RuleModule;
'no-unwanted-polyfillio': Rule.RuleModule;
};
configs: ESLintPluginConfigs;
};
type ESLintPluginConfigs = {
'recommended-legacy': Linter.LegacyConfig;
'core-web-vitals-legacy': Linter.LegacyConfig;
recommended: Linter.Config;
'core-web-vitals': Linter.Config;
};
export default plugin;
export declare const rules: {
'google-font-display': Rule.RuleModule;
'google-font-preconnect': Rule.RuleModule;
'inline-script-id': Rule.RuleModule;
'next-script-for-ga': Rule.RuleModule;
'no-assign-module-variable': Rule.RuleModule;
'no-async-client-component': Rule.RuleModule;
'no-before-interactive-script-outside-document': Rule.RuleModule;
'no-css-tags': Rule.RuleModule;
'no-document-import-in-page': Rule.RuleModule;
'no-duplicate-head': Rule.RuleModule;
'no-head-element': Rule.RuleModule;
'no-head-import-in-document': Rule.RuleModule;
'no-html-link-for-pages': Rule.RuleModule;
'no-img-element': Rule.RuleModule;
'no-page-custom-font': Rule.RuleModule;
'no-script-component-in-head': Rule.RuleModule;
'no-styled-jsx-in-document': Rule.RuleModule;
'no-sync-scripts': Rule.RuleModule;
'no-title-in-document-head': Rule.RuleModule;
'no-typos': Rule.RuleModule;
'no-unwanted-polyfillio': Rule.RuleModule;
}, configs: ESLintPluginConfigs;