* Convert to bun * Write "deploy to pages" action * Remove unneeded steps and files * Switch from eslint to biome for linting and formatting * Combine lint and format commands * Add feeds * Remove Atom feed * Add time to feed display * Work on the github pages workflow
9 lines
270 B
JavaScript
9 lines
270 B
JavaScript
import pluginJs from "@eslint/js";
|
|
import globals from "globals";
|
|
import tseslint from "typescript-eslint";
|
|
|
|
export default [
|
|
{ languageOptions: { globals: { ...globals.browser, ...globals.node } } },
|
|
pluginJs.configs.recommended,
|
|
...tseslint.configs.recommended,
|
|
];
|