mirror of
https://gitlab.com/futo-org/fcast.git
synced 2025-06-24 21:25:23 +00:00
11 lines
281 B
JavaScript
11 lines
281 B
JavaScript
![]() |
import globals from "globals";
|
||
|
import pluginJs from "@eslint/js";
|
||
|
import tseslint from "typescript-eslint";
|
||
|
|
||
|
|
||
|
export default [
|
||
|
{files: ["**/*.{js,mjs,cjs,ts}"]},
|
||
|
{languageOptions: { globals: globals.node }},
|
||
|
pluginJs.configs.recommended,
|
||
|
...tseslint.configs.recommended,
|
||
|
];
|