- Add clickable favorites counter with expandable panel - Render saved recipes list with remove button - Remove duplicate 'Another one' button (Generate already covers it) - Sync favorite button state when removing from panel
23 lines
531 B
JavaScript
23 lines
531 B
JavaScript
import js from "@eslint/js";
|
|
import tseslint from "typescript-eslint";
|
|
import astro from "eslint-plugin-astro";
|
|
import globals from "globals";
|
|
|
|
export default [
|
|
{ ignores: ["dist/**", ".astro/**", "node_modules/**", "src/env.d.ts"] },
|
|
js.configs.recommended,
|
|
...tseslint.configs.recommended,
|
|
...astro.configs.recommended,
|
|
{
|
|
files: ["public/sw.js"],
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.serviceworker,
|
|
},
|
|
},
|
|
rules: {
|
|
"@typescript-eslint/no-unused-vars": "off",
|
|
},
|
|
},
|
|
];
|