mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-04-25 02:09:26 -04:00
21 lines
497 B
JavaScript
21 lines
497 B
JavaScript
import globals from "globals";
|
|
import pluginJs from "@eslint/js";
|
|
import tseslint from "typescript-eslint";
|
|
import pluginReact from "eslint-plugin-react";
|
|
|
|
export default [
|
|
{
|
|
ignores: ["node_modules", "dist"],
|
|
},
|
|
pluginJs.configs.recommended,
|
|
...tseslint.configs.recommended,
|
|
pluginReact.configs.flat.recommended,
|
|
{
|
|
files: ["**/*.{js,mjs,cjs,ts,jsx,tsx}"],
|
|
languageOptions: { globals: globals.browser },
|
|
rules: {
|
|
"react/react-in-jsx-scope": "off",
|
|
},
|
|
},
|
|
];
|