UNPKG

@koalarx/nest-cli

Version:

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

21 lines (20 loc) 417 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', }, }