mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-01 10:09:55 +00:00
11 lines
No EOL
295 B
JavaScript
11 lines
No EOL
295 B
JavaScript
import globals from "globals";
|
|
import pluginJs from "@eslint/js";
|
|
import pluginReact from "eslint-plugin-react";
|
|
|
|
|
|
export default [
|
|
{files: ["**/*.{js,mjs,cjs,jsx}"]},
|
|
{languageOptions: { globals: globals.browser }},
|
|
pluginJs.configs.recommended,
|
|
pluginReact.configs.flat.recommended,
|
|
]; |