UNPKG

@constl/mandataire

Version:

Un mandataire très léger pour le client Constellation.

28 lines (26 loc) 603 B
import eslint from "@eslint/js"; import tseslint from "typescript-eslint"; export default [ eslint.configs.recommended, ...tseslint.configs.recommended, { files: ["**/*.js", "**/*.ts"], languageOptions: { parserOptions: { ecmaVersion: 12, sourceType: "module", }, }, rules: { "@typescript-eslint/no-non-null-assertion": "off", "@typescript-eslint/no-unused-vars": [ "warn", { argsIgnorePattern: "^_", varsIgnorePattern: "^_", caughtErrorsIgnorePattern: "^_", }, ], }, }, ];