Initial commit
This commit is contained in:
commit
185bdc4886
23 changed files with 9919 additions and 0 deletions
11
frontend/eslint.config.ts
Normal file
11
frontend/eslint.config.ts
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import js from "@eslint/js";
|
||||
import globals from "globals";
|
||||
import tseslint from "typescript-eslint";
|
||||
import pluginReact from "eslint-plugin-react";
|
||||
import { defineConfig } from "eslint/config";
|
||||
|
||||
export default defineConfig([
|
||||
{ files: ["**/*.{js,mjs,cjs,ts,mts,cts,jsx,tsx}"], plugins: { js }, extends: ["js/recommended"], languageOptions: { globals: globals.browser } },
|
||||
tseslint.configs.recommended,
|
||||
pluginReact.configs.flat.recommended,
|
||||
]);
|
||||
Loading…
Add table
Add a link
Reference in a new issue