mirror of
https://github.com/MincoMK/create-computercraft.git
synced 2025-12-10 06:33:18 +00:00
12 lines
403 B
JavaScript
12 lines
403 B
JavaScript
import js from "@eslint/js";
|
|
import globals from "globals";
|
|
import tseslint from "typescript-eslint";
|
|
import { defineConfig } from "eslint/config";
|
|
|
|
|
|
export default defineConfig([
|
|
{ files: ["**/*.{js,mjs,cjs,ts,mts,cts}"], plugins: { js }, extends: ["js/recommended"] },
|
|
{ files: ["**/*.{js,mjs,cjs,ts,mts,cts}"], languageOptions: { globals: globals.browser } },
|
|
tseslint.configs.recommended,
|
|
]);
|