UNPKG

@koalarx/nest-cli

Version:

Biblioteca de CLI para criação de projetos utilizando Koala Nest

23 lines (22 loc) 523 B
module.exports = { globals: { NodeJS: true, }, extends: [ "@rocketseat/eslint-config/node", "plugin:vitest-globals/recommended", ], env: { "vitest-globals/env": true, }, ignorePatterns: ["*.json"], rules: { "no-unused-vars": "off", "no-useless-constructor": "off", "no-new": "off", "no-use-before-define": "off", "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/no-unsafe-function-type": "off", "@typescript-eslint/ban-ts-comment": "off", }, };