mirror of
https://github.com/HeyPuter/puter.git
synced 2025-02-02 14:18:43 +08:00
2ca1f71595
removed because wasn't being used
12 lines
332 B
JavaScript
12 lines
332 B
JavaScript
import globals from "globals";
|
|
import pluginJs from "@eslint/js";
|
|
import tseslint from "typescript-eslint";
|
|
|
|
|
|
/** @type {import('eslint').Linter.Config[]} */
|
|
export default [
|
|
{files: ["**/*.{js,mjs,cjs,ts}"]},
|
|
{languageOptions: { globals: globals.browser }},
|
|
pluginJs.configs.recommended,
|
|
...tseslint.configs.recommended,
|
|
]; |