mirror of
https://github.com/supabase/supabase.git
synced 2026-05-06 22:18:00 +08:00
* Use the "eslint" command instead of built-in next lint since it's getting obsolete. * Bump all deps to support eslint 9+. * Convert the rules in eslint-config-supabase to be flat-config compatible. * Migrate all apps to use the new eslint config rules. * Fix all errors found in the new setup. * Fix the no default exports ignores. * Scan all files for linting in studio. * Fix all lint errors. * Make the reportUnusedDisableDirectives a warning.
5 lines
161 B
JavaScript
5 lines
161 B
JavaScript
const { defineConfig } = require('eslint/config')
|
|
const supabaseConfig = require('eslint-config-supabase/next')
|
|
|
|
module.exports = defineConfig([supabaseConfig])
|