forked from svrjs/svrjs
11 lines
355 B
JavaScript
11 lines
355 B
JavaScript
|
import globals from "globals";
|
||
|
import pluginJs from "@eslint/js";
|
||
|
import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended";
|
||
|
|
||
|
export default [
|
||
|
{files: ["**/*.js"], languageOptions: {sourceType: "commonjs"}},
|
||
|
{languageOptions: { globals: {...globals.node} }},
|
||
|
pluginJs.configs.recommended,
|
||
|
eslintPluginPrettierRecommended
|
||
|
];
|