UNPKG

ilastlog

Version:

alternative lastlog because of Ubuntu 24.04.1. The distros have had the libpam excluding lastlog.so. therefore, I personally needed.

18 lines (16 loc) 469 B
import globals from "globals"; import pluginJs from "@eslint/js"; import tseslint from "typescript-eslint"; /** @type {import('eslint').Linter.Config[]} */ export default [ {files: ["**/*.{js,mjs,cjs,ts}"]}, {languageOptions: {globals: globals.browser}}, pluginJs.configs.recommended, ...tseslint.configs.strict, ...tseslint.configs.stylistic, { rules: { "@typescript-eslint/no-require-imports": "off", }, }, ];