compare-with-biwako
Version:
This npm can compare the size of Lake Biwa and the 23 wards of Tokyo
19 lines (17 loc) • 371 B
JavaScript
import { defineConfig } from "eslint/config";
import js from "@eslint/js";
import globals from "globals";
export default defineConfig([
js.configs.recommended,
{
languageOptions: {
sourceType: "module",
ecmaVersion: "latest",
globals: globals.node,
},
rules: {
"no-console": "off",
"no-unused-vars": "warn",
},
},
]);