feat: notifications, redux, tailwind
This commit is contained in:
21
eslint.config.mjs
Normal file
21
eslint.config.mjs
Normal file
@ -0,0 +1,21 @@
|
||||
import mantine from "eslint-config-mantine";
|
||||
import tseslint from "typescript-eslint";
|
||||
|
||||
export default tseslint.config(
|
||||
...mantine,
|
||||
{ ignores: ["**/*.{mjs,cjs,js,d.ts,d.mts}"] },
|
||||
{
|
||||
files: ["**/*.story.tsx"],
|
||||
rules: {
|
||||
"no-console": "off",
|
||||
},
|
||||
},
|
||||
{
|
||||
files: ["**/*.{ts,tsx}"],
|
||||
rules: {
|
||||
"no-console": "off",
|
||||
"react/jsx-curly-brace-presence": "off",
|
||||
"curly": "off",
|
||||
},
|
||||
}
|
||||
);
|
||||
Reference in New Issue
Block a user