mirror of
https://github.com/Jerryplusy/crystelf-plugin.git
synced 2025-07-04 06:09:19 +00:00
10 lines
342 B
JavaScript
10 lines
342 B
JavaScript
import { defineConfig } from "eslint/config";
|
|
import globals from "globals";
|
|
import js from "@eslint/js";
|
|
|
|
|
|
export default defineConfig([
|
|
{ files: ["**/*.{js,mjs,cjs}"] },
|
|
{ files: ["**/*.{js,mjs,cjs}"], languageOptions: { globals: globals.browser } },
|
|
{ files: ["**/*.{js,mjs,cjs}"], plugins: { js }, extends: ["js/recommended"] },
|
|
]); |