UNPKG

@tomei/store

Version:
36 lines (33 loc) 1.34 kB
module.exports = { parser: "@typescript-eslint/parser", plugins: ["@typescript-eslint"], parserOptions: { ecmaVersion: "latest", // Allows the use of modern ECMAScript features sourceType: "module", // Allows for the use of imports }, extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"], env: { node: true, // Enable Node.js global variables }, rules: { "no-console": "off", "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/no-var-requires": "off", "@typescript-eslint/explicit-module-boundary-types": "off", "import/prefer-default-export": "off", "@typescript-eslint/no-unused-vars": "warn", "no-useless-catch": "off", "@typescript-eslint/no-non-null-assertion": "off", "@typescript-eslint/no-empty-function": "off", "@typescript-eslint/no-empty-interface": "off", "@typescript-eslint/no-inferrable-types": "off", "@typescript-eslint/no-namespace": "off", "@typescript-eslint/no-use-before-define": "off", "@typescript-eslint/no-unsafe-assignment": "off", "@typescript-eslint/no-unsafe-call": "off", "@typescript-eslint/no-unsafe-member-access": "off", "@typescript-eslint/no-unsafe-return": "off", "@typescript-eslint/restrict-template-expressions": "off", "no-useless-escape": "off", }, };