089b8b9805
<!-- CURSOR_SUMMARY --> > [!NOTE] > **Medium Risk** > Medium risk because it deletes a large subtree (`apps/web`) and removes SDK-reference generation/commit steps from the package publish workflow, which may affect downstream docs/release expectations. > > **Overview** > **Removes the docs web app and generated SDK reference content.** The PR deletes `apps/web` configs/scripts (Next.js/MDX setup, Sentry config, prebuild/sitemap generation) and removes the committed `sdk-reference` MDX pages. > > **Simplifies repo automation and ownership.** The package publish workflow no longer generates/clones/commits SDK reference docs, `CODEOWNERS` drops web/docs ownership entries, and the root ESLint config removes `@stylistic/ts` in favor of the built-in `semi` rule. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 4158d777b5f3d3fa30b538e434d34ce0e697d473. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
27 lines
819 B
JavaScript
27 lines
819 B
JavaScript
module.exports = {
|
|
env: {
|
|
node: true,
|
|
browser: true,
|
|
es6: true,
|
|
},
|
|
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
|
|
parser: '@typescript-eslint/parser',
|
|
parserOptions: {
|
|
ecmaVersion: 'latest',
|
|
sourceType: 'module',
|
|
},
|
|
ignorePatterns: ['dist/', 'node_modules/', '*.gen.ts'],
|
|
plugins: ['@typescript-eslint', 'unused-imports'],
|
|
rules: {
|
|
'@typescript-eslint/member-ordering': 'error',
|
|
'@typescript-eslint/ban-ts-comment': 'off', // "move fast" mode
|
|
'@typescript-eslint/no-explicit-any': 'off', // "move fast" mode
|
|
'linebreak-style': ['error', 'unix'],
|
|
'unused-imports/no-unused-imports': 'error',
|
|
// No double quotes
|
|
quotes: ['error', 'single', { avoidEscape: true }],
|
|
// No extra semicolon
|
|
semi: ['error', 'never'],
|
|
},
|
|
}
|