reviewbot

Source code for the is-a.dev r...
Log | Files | Refs | README | LICENSE

eslint.config.js (458B)


      1 import js from "@eslint/js";
      2 import globals from "globals";
      3 import { defineConfig } from "eslint/config";
      4 
      5 export default defineConfig([
      6   { 
      7     files: ["**/*.{js,mjs,cjs}"], 
      8     plugins: { js }, 
      9     extends: ["js/recommended"], 
     10     languageOptions: { globals: globals.node },
     11     rules: {
     12 			"consistent-return": 2,
     13 			"indent"           : [1, 4],
     14 			"no-else-return"   : 1,
     15 			"semi"             : [1, "always"],
     16 			"space-unary-ops"  : 2
     17 		}
     18   },
     19 ]);
© notamitgamer • Site Built: 2026-07-21 13:58:23 UTC • git-mirror commit: 1037f62 [view raw info]
Originally created with stagit • modified by notamitgamer
Forked from github.com/notamitgamer/git-mirror