Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[no-unused-vars] False positives with Interfaces and Classes #2967

Closed
3 tasks done
fbaba-nibtravel opened this issue Jan 24, 2021 · 1 comment
Closed
3 tasks done
Labels
duplicate This issue or pull request already exists package: parser Issues related to @typescript-eslint/parser

Comments

@fbaba-nibtravel
Copy link

  • I have tried restarting my IDE and the issue persists.
  • I have updated to the latest version of the packages.
  • I have read the FAQ and my problem is not listed.

Repro

{
  "rules": {
    "@typescript-eslint/no-unused-vars": ["error", {
       "argsIgnorePattern": "^_"
     }]
  }
}
import {
  ChangeDetectionStrategy,
  Component,
  HostBinding,
  Input,
  Type,
} from '@angular/core';
import { Document } from '@contentful/rich-text-types';
import { NodeRenderer } from 'ngx-contentful-rich-text';

import { PanelType } from './models/panel.enum';

@Component({
  ... 
})
export class PanelComponent {
  ...  
  @Input() nodeRenderers!: Record<string, Type<NodeRenderer>>;
}

tsconfig.base.json

{
  "compileOnSave": false,
  "compilerOptions": {
    "rootDir": ".",
    "sourceMap": true,
    "declaration": false,
    "moduleResolution": "node",
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "resolveJsonModule": true,
    "esModuleInterop": true,
    "importHelpers": true,
    "target": "es2015",
    "module": "esnext",
    "typeRoots": [
      "node_modules/@types"
    ],
    "lib": [
      "es2017",
      "dom"
    ],
    "skipLibCheck": true,
    "skipDefaultLibCheck": true,
    "strict": true,
    "baseUrl": ".",
    "paths": {
      ...
    }
  },
  "exclude": [
    "node_modules",
    "tmp"
  ]
}

Expected Result

Since the imported variables are being used as types, should not throw error (in my case setting as warning).

Actual Result

Interfaces and classes used to identify types are being shown as unused-vars
image

image

Additional Info

fernandobaba@n4nd0s nibtravel % yarn eslint -c=/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json --debug /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel
yarn run v1.22.10
$ /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/.bin/eslint -c=/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json --debug /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel
  eslint:cli CLI args: [ '-c=/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json', '--debug', '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' ] +0ms
  eslint:cli Running on files +3ms
  eslintrc:config-array-factory Loading .eslintignore file: /Users/fernandobaba/Repositories/nib/nibtravel/.eslintignore +0ms
  eslintrc:config-array-factory Loading JSON config file: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json +2ms
  eslintrc:config-array-factory Loading {extends:"../../../../../.eslintrc.json"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json +2ms
  eslintrc:config-array-factory package.json was not found: Cannot find module '../../../../../.eslintrc.json/package.json'
Require stack:
- /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json +1ms
  eslintrc:config-array-factory Loaded: ../../../../../.eslintrc.json (/Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json) +1ms
  eslintrc:config-array-factory Loading JSON config file: /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loading {extends:"eslint:recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +1ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint/conf/eslint-recommended.js +0ms
  eslintrc:config-array-factory Loading {extends:"plugin:@typescript-eslint/eslint-recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +3ms
  eslintrc:config-array-factory Loading plugin "@typescript-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +1ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/eslint-plugin@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js) +3ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js loaded in: 435ms +435ms
  eslintrc:config-array-factory Loading {extends:"plugin:@typescript-eslint/recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +1ms
  eslintrc:config-array-factory Loading plugin "@typescript-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/eslint-plugin@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"./configs/base"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +1ms
  eslintrc:config-array-factory package.json was not found: Cannot find module './configs/base/package.json'
Require stack:
- /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +0ms
  eslintrc:config-array-factory Loaded: ./configs/base (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js) +0ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js +0ms
  eslintrc:config-array-factory Loading parser "@typescript-eslint/parser" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/parser@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js) +2ms
  eslintrc:config-array-factory Loading plugin "@typescript-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js +93ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/eslint-plugin@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"./configs/eslint-recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +1ms
  eslintrc:config-array-factory package.json was not found: Cannot find module './configs/eslint-recommended/package.json'
Require stack:
- /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +0ms
  eslintrc:config-array-factory Loaded: ./configs/eslint-recommended (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js) +0ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js +0ms
  eslintrc:config-array-factory Loading {extends:"prettier"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loaded: eslint-config-prettier@7.2.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/index.js) +1ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/index.js +0ms
  eslintrc:config-array-factory Loading {extends:"prettier/@typescript-eslint"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +1ms
  eslintrc:config-array-factory package.json was not found: Cannot find module 'eslint-config-prettier/@typescript-eslint/package.json'
Require stack:
- /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loaded: eslint-config-prettier/@typescript-eslint (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/@typescript-eslint.js) +0ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/@typescript-eslint.js +0ms
  eslintrc:config-array-factory Loading parser "@typescript-eslint/parser" from /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +1ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/parser@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js) +0ms
  eslintrc:config-array-factory Loading plugin "@nrwl/nx" from /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loaded: @nrwl/eslint-plugin-nx@11.1.5 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js) +1ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js loaded in: 284ms +284ms
  eslintrc:config-array-factory Loading {extends:"plugin:@nrwl/nx/typescript"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +1ms
  eslintrc:config-array-factory Loading plugin "@nrwl/nx" from /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loaded: @nrwl/eslint-plugin-nx@11.1.5 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"eslint:recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint/conf/eslint-recommended.js +0ms
  eslintrc:config-array-factory Loading {extends:"plugin:@typescript-eslint/eslint-recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loading plugin "@typescript-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +1ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/eslint-plugin@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"plugin:@typescript-eslint/recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loading plugin "@typescript-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/eslint-plugin@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"./configs/base"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +0ms
  eslintrc:config-array-factory package.json was not found: Cannot find module './configs/base/package.json'
Require stack:
- /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +0ms
  eslintrc:config-array-factory Loaded: ./configs/base (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js) +0ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js +0ms
  eslintrc:config-array-factory Loading parser "@typescript-eslint/parser" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js +1ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/parser@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js) +0ms
  eslintrc:config-array-factory Loading plugin "@typescript-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/eslint-plugin@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"./configs/eslint-recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +0ms
  eslintrc:config-array-factory package.json was not found: Cannot find module './configs/eslint-recommended/package.json'
Require stack:
- /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +0ms
  eslintrc:config-array-factory Loaded: ./configs/eslint-recommended (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js) +0ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js +0ms
  eslintrc:config-array-factory Loading {extends:"prettier"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: eslint-config-prettier@7.2.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/index.js) +0ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/index.js +0ms
  eslintrc:config-array-factory Loading {extends:"prettier/@typescript-eslint"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +1ms
  eslintrc:config-array-factory package.json was not found: Cannot find module 'eslint-config-prettier/@typescript-eslint/package.json'
Require stack:
- /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: eslint-config-prettier/@typescript-eslint (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/@typescript-eslint.js) +0ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/@typescript-eslint.js +0ms
  eslintrc:config-array-factory Loading parser "@typescript-eslint/parser" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/parser@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js) +0ms
  eslintrc:config-array-factory Loading plugin "@typescript-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/eslint-plugin@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"plugin:@nrwl/nx/javascript"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +1ms
  eslintrc:config-array-factory Loading plugin "@nrwl/nx" from /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loaded: @nrwl/eslint-plugin-nx@11.1.5 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"eslint:recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint/conf/eslint-recommended.js +0ms
  eslintrc:config-array-factory Loading {extends:"plugin:@typescript-eslint/eslint-recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +1ms
  eslintrc:config-array-factory Loading plugin "@typescript-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/eslint-plugin@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"plugin:@typescript-eslint/recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loading plugin "@typescript-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/eslint-plugin@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js) +1ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"./configs/base"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +0ms
  eslintrc:config-array-factory package.json was not found: Cannot find module './configs/base/package.json'
Require stack:
- /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +0ms
  eslintrc:config-array-factory Loaded: ./configs/base (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js) +0ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js +0ms
  eslintrc:config-array-factory Loading parser "@typescript-eslint/parser" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/parser@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js) +0ms
  eslintrc:config-array-factory Loading plugin "@typescript-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js +1ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/eslint-plugin@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"./configs/eslint-recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +0ms
  eslintrc:config-array-factory package.json was not found: Cannot find module './configs/eslint-recommended/package.json'
Require stack:
- /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +0ms
  eslintrc:config-array-factory Loaded: ./configs/eslint-recommended (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js) +0ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js +0ms
  eslintrc:config-array-factory Loading {extends:"prettier"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: eslint-config-prettier@7.2.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/index.js) +0ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/index.js +0ms
  eslintrc:config-array-factory Loading {extends:"prettier/@typescript-eslint"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +1ms
  eslintrc:config-array-factory package.json was not found: Cannot find module 'eslint-config-prettier/@typescript-eslint/package.json'
Require stack:
- /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: eslint-config-prettier/@typescript-eslint (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/@typescript-eslint.js) +0ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/@typescript-eslint.js +0ms
  eslintrc:config-array-factory Loading parser "@typescript-eslint/parser" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/parser@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js) +0ms
  eslintrc:config-array-factory Loading plugin "@typescript-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/eslint-plugin@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"plugin:@nrwl/nx/angular"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json +1ms
  eslintrc:config-array-factory Loading plugin "@nrwl/nx" from /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loaded: @nrwl/eslint-plugin-nx@11.1.5 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"plugin:@angular-eslint/recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loading plugin "@angular-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: @angular-eslint/eslint-plugin@1.1.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/index.js) +1ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/index.js loaded in: 112ms +112ms
  eslintrc:config-array-factory Loading {extends:"./configs/base.json"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/index.js +0ms
  eslintrc:config-array-factory package.json was not found: Cannot find module './configs/base.json/package.json'
Require stack:
- /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/index.js +0ms
  eslintrc:config-array-factory Loaded: ./configs/base.json (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/configs/base.json) +0ms
  eslintrc:config-array-factory Loading JSON config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/configs/base.json +0ms
  eslintrc:config-array-factory Loading parser "@typescript-eslint/parser" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/configs/base.json +1ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/parser@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js) +0ms
  eslintrc:config-array-factory Loading plugin "@typescript-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/configs/base.json +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/eslint-plugin@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js loaded in: 0ms +1ms
  eslintrc:config-array-factory Loading plugin "@angular-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/configs/base.json +0ms
  eslintrc:config-array-factory Loaded: @angular-eslint/eslint-plugin@1.1.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading plugin "@angular-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: @angular-eslint/eslint-plugin@1.1.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"plugin:@angular-eslint/template/process-inline-templates"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loading plugin "@angular-eslint/template" from /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loaded: @angular-eslint/eslint-plugin-template@1.1.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js) +1ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js loaded in: 318ms +318ms
  eslintrc:config-array-factory Loading parser "@typescript-eslint/parser" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/parser@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js) +1ms
  eslintrc:config-array-factory Loading plugin "@angular-eslint/template" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js +0ms
  eslintrc:config-array-factory Loaded: @angular-eslint/eslint-plugin-template@1.1.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"plugin:@nrwl/nx/angular-template"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loading plugin "@nrwl/nx" from /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loaded: @nrwl/eslint-plugin-nx@11.1.5 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"plugin:@angular-eslint/template/recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loading plugin "@angular-eslint/template" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: @angular-eslint/eslint-plugin-template@1.1.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"./configs/base.json"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js +0ms
  eslintrc:config-array-factory package.json was not found: Cannot find module './configs/base.json/package.json'
Require stack:
- /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js +0ms
  eslintrc:config-array-factory Loaded: ./configs/base.json (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/configs/base.json) +0ms
  eslintrc:config-array-factory Loading JSON config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/configs/base.json +0ms
  eslintrc:config-array-factory Loading parser "@angular-eslint/template-parser" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/configs/base.json +1ms
  eslintrc:config-array-factory Loaded: @angular-eslint/template-parser@1.1.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/template-parser/dist/index.js) +1ms
  eslintrc:config-array-factory Loading plugin "@angular-eslint/template" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/configs/base.json +17ms
  eslintrc:config-array-factory Loaded: @angular-eslint/eslint-plugin-template@1.1.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading plugin "@angular-eslint/template" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: @angular-eslint/eslint-plugin-template@1.1.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js loaded in: 0ms +0ms
  eslintrc:ignore-pattern Create with: [ IgnorePattern { patterns: [ '/**/node_modules/*' ], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', loose: false } ] +0ms
  eslintrc:ignore-pattern   processed: { basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', patterns: [ '/**/node_modules/*' ] } +2ms
  eslintrc:ignore-pattern Create with: [ IgnorePattern { patterns: [ '/**/node_modules/*' ], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', loose: false } ] +0ms
  eslintrc:ignore-pattern   processed: { basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', patterns: [ '/**/node_modules/*' ] } +1ms
  eslint:file-enumerator Start to iterate files: [ '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' ] +0ms
  eslint:file-enumerator Directory: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel +1ms
  eslint:file-enumerator Enter the directory: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel +0ms
  eslintrc:cascading-config-array-factory Load config files for /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel. +0ms
  eslintrc:cascading-config-array-factory No cache found: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel. +0ms
  eslintrc:config-array-factory Loading JSON config file: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json +5ms
  eslintrc:config-array-factory Config file found: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json +1ms
  eslintrc:config-array-factory Loading {extends:"../../../../../.eslintrc.json"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json +0ms
  eslintrc:config-array-factory package.json was not found: Cannot find module '../../../../../.eslintrc.json/package.json'
Require stack:
- /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loaded: ../../../../../.eslintrc.json (/Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json) +0ms
  eslintrc:config-array-factory Loading JSON config file: /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loading {extends:"eslint:recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +1ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint/conf/eslint-recommended.js +0ms
  eslintrc:config-array-factory Loading {extends:"plugin:@typescript-eslint/eslint-recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loading plugin "@typescript-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/eslint-plugin@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"plugin:@typescript-eslint/recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loading plugin "@typescript-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/eslint-plugin@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"./configs/base"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +0ms
  eslintrc:config-array-factory package.json was not found: Cannot find module './configs/base/package.json'
Require stack:
- /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +0ms
  eslintrc:config-array-factory Loaded: ./configs/base (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js) +1ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js +0ms
  eslintrc:config-array-factory Loading parser "@typescript-eslint/parser" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/parser@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js) +0ms
  eslintrc:config-array-factory Loading plugin "@typescript-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/eslint-plugin@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"./configs/eslint-recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +0ms
  eslintrc:config-array-factory package.json was not found: Cannot find module './configs/eslint-recommended/package.json'
Require stack:
- /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +0ms
  eslintrc:config-array-factory Loaded: ./configs/eslint-recommended (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js) +0ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js +0ms
  eslintrc:config-array-factory Loading {extends:"prettier"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +1ms
  eslintrc:config-array-factory Loaded: eslint-config-prettier@7.2.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/index.js) +0ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/index.js +0ms
  eslintrc:config-array-factory Loading {extends:"prettier/@typescript-eslint"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +0ms
  eslintrc:config-array-factory package.json was not found: Cannot find module 'eslint-config-prettier/@typescript-eslint/package.json'
Require stack:
- /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loaded: eslint-config-prettier/@typescript-eslint (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/@typescript-eslint.js) +0ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/@typescript-eslint.js +0ms
  eslintrc:config-array-factory Loading parser "@typescript-eslint/parser" from /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/parser@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js) +0ms
  eslintrc:config-array-factory Loading plugin "@nrwl/nx" from /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loaded: @nrwl/eslint-plugin-nx@11.1.5 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js loaded in: 0ms +1ms
  eslintrc:config-array-factory Loading {extends:"plugin:@nrwl/nx/typescript"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loading plugin "@nrwl/nx" from /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loaded: @nrwl/eslint-plugin-nx@11.1.5 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"eslint:recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint/conf/eslint-recommended.js +0ms
  eslintrc:config-array-factory Loading {extends:"plugin:@typescript-eslint/eslint-recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loading plugin "@typescript-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/eslint-plugin@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"plugin:@typescript-eslint/recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loading plugin "@typescript-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/eslint-plugin@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"./configs/base"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +0ms
  eslintrc:config-array-factory package.json was not found: Cannot find module './configs/base/package.json'
Require stack:
- /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +1ms
  eslintrc:config-array-factory Loaded: ./configs/base (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js) +0ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js +0ms
  eslintrc:config-array-factory Loading parser "@typescript-eslint/parser" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/parser@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js) +0ms
  eslintrc:config-array-factory Loading plugin "@typescript-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/eslint-plugin@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"./configs/eslint-recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +0ms
  eslintrc:config-array-factory package.json was not found: Cannot find module './configs/eslint-recommended/package.json'
Require stack:
- /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +0ms
  eslintrc:config-array-factory Loaded: ./configs/eslint-recommended (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js) +0ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js +0ms
  eslintrc:config-array-factory Loading {extends:"prettier"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: eslint-config-prettier@7.2.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/index.js) +1ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/index.js +0ms
  eslintrc:config-array-factory Loading {extends:"prettier/@typescript-eslint"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory package.json was not found: Cannot find module 'eslint-config-prettier/@typescript-eslint/package.json'
Require stack:
- /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: eslint-config-prettier/@typescript-eslint (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/@typescript-eslint.js) +0ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/@typescript-eslint.js +0ms
  eslintrc:config-array-factory Loading parser "@typescript-eslint/parser" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/parser@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js) +0ms
  eslintrc:config-array-factory Loading plugin "@typescript-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/eslint-plugin@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"plugin:@nrwl/nx/javascript"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +1ms
  eslintrc:config-array-factory Loading plugin "@nrwl/nx" from /Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loaded: @nrwl/eslint-plugin-nx@11.1.5 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"eslint:recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint/conf/eslint-recommended.js +0ms
  eslintrc:config-array-factory Loading {extends:"plugin:@typescript-eslint/eslint-recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loading plugin "@typescript-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/eslint-plugin@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"plugin:@typescript-eslint/recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loading plugin "@typescript-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/eslint-plugin@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"./configs/base"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +0ms
  eslintrc:config-array-factory package.json was not found: Cannot find module './configs/base/package.json'
Require stack:
- /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +0ms
  eslintrc:config-array-factory Loaded: ./configs/base (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js) +0ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js +0ms
  eslintrc:config-array-factory Loading parser "@typescript-eslint/parser" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js +1ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/parser@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js) +0ms
  eslintrc:config-array-factory Loading plugin "@typescript-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/eslint-plugin@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"./configs/eslint-recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +0ms
  eslintrc:config-array-factory package.json was not found: Cannot find module './configs/eslint-recommended/package.json'
Require stack:
- /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +0ms
  eslintrc:config-array-factory Loaded: ./configs/eslint-recommended (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js) +0ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js +0ms
  eslintrc:config-array-factory Loading {extends:"prettier"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: eslint-config-prettier@7.2.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/index.js) +0ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/index.js +0ms
  eslintrc:config-array-factory Loading {extends:"prettier/@typescript-eslint"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +1ms
  eslintrc:config-array-factory package.json was not found: Cannot find module 'eslint-config-prettier/@typescript-eslint/package.json'
Require stack:
- /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: eslint-config-prettier/@typescript-eslint (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/@typescript-eslint.js) +0ms
  eslintrc:config-array-factory Loading JS config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/@typescript-eslint.js +0ms
  eslintrc:config-array-factory Loading parser "@typescript-eslint/parser" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/parser@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js) +0ms
  eslintrc:config-array-factory Loading plugin "@typescript-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/eslint-plugin@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"plugin:@nrwl/nx/angular"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loading plugin "@nrwl/nx" from /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loaded: @nrwl/eslint-plugin-nx@11.1.5 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"plugin:@angular-eslint/recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loading plugin "@angular-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: @angular-eslint/eslint-plugin@1.1.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"./configs/base.json"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/index.js +0ms
  eslintrc:config-array-factory package.json was not found: Cannot find module './configs/base.json/package.json'
Require stack:
- /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/index.js +1ms
  eslintrc:config-array-factory Loaded: ./configs/base.json (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/configs/base.json) +0ms
  eslintrc:config-array-factory Loading JSON config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/configs/base.json +0ms
  eslintrc:config-array-factory Loading parser "@typescript-eslint/parser" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/configs/base.json +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/parser@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js) +0ms
  eslintrc:config-array-factory Loading plugin "@typescript-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/configs/base.json +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/eslint-plugin@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading plugin "@angular-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/configs/base.json +0ms
  eslintrc:config-array-factory Loaded: @angular-eslint/eslint-plugin@1.1.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/index.js loaded in: 1ms +1ms
  eslintrc:config-array-factory Loading plugin "@angular-eslint" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: @angular-eslint/eslint-plugin@1.1.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"plugin:@angular-eslint/template/process-inline-templates"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loading plugin "@angular-eslint/template" from /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loaded: @angular-eslint/eslint-plugin-template@1.1.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js) +1ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading parser "@typescript-eslint/parser" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js +0ms
  eslintrc:config-array-factory Loaded: @typescript-eslint/parser@4.14.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js) +0ms
  eslintrc:config-array-factory Loading plugin "@angular-eslint/template" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js +0ms
  eslintrc:config-array-factory Loaded: @angular-eslint/eslint-plugin-template@1.1.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"plugin:@nrwl/nx/angular-template"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loading plugin "@nrwl/nx" from /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json +0ms
  eslintrc:config-array-factory Loaded: @nrwl/eslint-plugin-nx@11.1.5 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"plugin:@angular-eslint/template/recommended"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loading plugin "@angular-eslint/template" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: @angular-eslint/eslint-plugin-template@1.1.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js loaded in: 0ms +0ms
  eslintrc:config-array-factory Loading {extends:"./configs/base.json"} relative to /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js +0ms
  eslintrc:config-array-factory package.json was not found: Cannot find module './configs/base.json/package.json'
Require stack:
- /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js +0ms
  eslintrc:config-array-factory Loaded: ./configs/base.json (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/configs/base.json) +0ms
  eslintrc:config-array-factory Loading JSON config file: /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/configs/base.json +0ms
  eslintrc:config-array-factory Loading parser "@angular-eslint/template-parser" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/configs/base.json +0ms
  eslintrc:config-array-factory Loaded: @angular-eslint/template-parser@1.1.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/template-parser/dist/index.js) +0ms
  eslintrc:config-array-factory Loading plugin "@angular-eslint/template" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/configs/base.json +0ms
  eslintrc:config-array-factory Loaded: @angular-eslint/eslint-plugin-template@1.1.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js loaded in: 1ms +1ms
  eslintrc:config-array-factory Loading plugin "@angular-eslint/template" from /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js +0ms
  eslintrc:config-array-factory Loaded: @angular-eslint/eslint-plugin-template@1.1.0 (/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js) +0ms
  eslintrc:config-array-factory Plugin /Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js loaded in: 0ms +0ms
  eslintrc:cascading-config-array-factory Stop traversing because of 'root:true'. +14ms
  eslint:rules Loading rule 'constructor-super' (remaining=283) +0ms
  eslint:rules Loading rule 'for-direction' (remaining=282) +2ms
  eslint:rules Loading rule 'getter-return' (remaining=281) +0ms
  eslint:rules Loading rule 'no-async-promise-executor' (remaining=280) +2ms
  eslint:rules Loading rule 'no-case-declarations' (remaining=279) +0ms
  eslint:rules Loading rule 'no-class-assign' (remaining=278) +1ms
  eslint:rules Loading rule 'no-compare-neg-zero' (remaining=277) +0ms
  eslint:rules Loading rule 'no-cond-assign' (remaining=276) +1ms
  eslint:rules Loading rule 'no-const-assign' (remaining=275) +1ms
  eslint:rules Loading rule 'no-constant-condition' (remaining=274) +0ms
  eslint:rules Loading rule 'no-control-regex' (remaining=273) +2ms
  eslint:rules Loading rule 'no-debugger' (remaining=272) +0ms
  eslint:rules Loading rule 'no-delete-var' (remaining=271) +1ms
  eslint:rules Loading rule 'no-dupe-args' (remaining=270) +1ms
  eslint:rules Loading rule 'no-dupe-class-members' (remaining=269) +0ms
  eslint:rules Loading rule 'no-dupe-else-if' (remaining=268) +0ms
  eslint:rules Loading rule 'no-dupe-keys' (remaining=267) +1ms
  eslint:rules Loading rule 'no-duplicate-case' (remaining=266) +0ms
  eslint:rules Loading rule 'no-empty' (remaining=265) +1ms
  eslint:rules Loading rule 'no-empty-character-class' (remaining=264) +1ms
  eslint:rules Loading rule 'no-empty-pattern' (remaining=263) +0ms
  eslint:rules Loading rule 'no-ex-assign' (remaining=262) +0ms
  eslint:rules Loading rule 'no-extra-boolean-cast' (remaining=261) +1ms
  eslint:rules Loading rule 'no-extra-semi' (remaining=260) +1ms
  eslint:rules Loading rule 'no-fallthrough' (remaining=259) +0ms
  eslint:rules Loading rule 'no-func-assign' (remaining=258) +1ms
  eslint:rules Loading rule 'no-global-assign' (remaining=257) +1ms
  eslint:rules Loading rule 'no-import-assign' (remaining=256) +1ms
  eslint:rules Loading rule 'no-inner-declarations' (remaining=255) +1ms
  eslint:rules Loading rule 'no-invalid-regexp' (remaining=254) +1ms
  eslint:rules Loading rule 'no-irregular-whitespace' (remaining=253) +1ms
  eslint:rules Loading rule 'no-misleading-character-class' (remaining=252) +2ms
  eslint:rules Loading rule 'no-mixed-spaces-and-tabs' (remaining=251) +1ms
  eslint:rules Loading rule 'no-new-symbol' (remaining=250) +1ms
  eslint:rules Loading rule 'no-obj-calls' (remaining=249) +1ms
  eslint:rules Loading rule 'no-octal' (remaining=248) +1ms
  eslint:rules Loading rule 'no-prototype-builtins' (remaining=247) +0ms
  eslint:rules Loading rule 'no-redeclare' (remaining=246) +0ms
  eslint:rules Loading rule 'no-regex-spaces' (remaining=245) +1ms
  eslint:rules Loading rule 'no-self-assign' (remaining=244) +0ms
  eslint:rules Loading rule 'no-setter-return' (remaining=243) +1ms
  eslint:rules Loading rule 'no-shadow-restricted-names' (remaining=242) +0ms
  eslint:rules Loading rule 'no-sparse-arrays' (remaining=241) +0ms
  eslint:rules Loading rule 'no-this-before-super' (remaining=240) +1ms
  eslint:rules Loading rule 'no-undef' (remaining=239) +0ms
  eslint:rules Loading rule 'no-unexpected-multiline' (remaining=238) +1ms
  eslint:rules Loading rule 'no-unreachable' (remaining=237) +0ms
  eslint:rules Loading rule 'no-unsafe-finally' (remaining=236) +0ms
  eslint:rules Loading rule 'no-unsafe-negation' (remaining=235) +0ms
  eslint:rules Loading rule 'no-unused-labels' (remaining=234) +1ms
  eslint:rules Loading rule 'no-unused-vars' (remaining=233) +0ms
  eslint:rules Loading rule 'no-useless-catch' (remaining=232) +2ms
  eslint:rules Loading rule 'no-useless-escape' (remaining=231) +0ms
  eslint:rules Loading rule 'no-with' (remaining=230) +0ms
  eslint:rules Loading rule 'require-yield' (remaining=229) +1ms
  eslint:rules Loading rule 'use-isnan' (remaining=228) +0ms
  eslint:rules Loading rule 'valid-typeof' (remaining=227) +0ms
  eslint:rules Loading rule 'no-var' (remaining=226) +1ms
  eslint:rules Loading rule 'prefer-const' (remaining=225) +0ms
  eslint:rules Loading rule 'prefer-rest-params' (remaining=224) +1ms
  eslint:rules Loading rule 'prefer-spread' (remaining=223) +1ms
  eslint:rules Loading rule 'no-array-constructor' (remaining=222) +3ms
  eslint:rules Loading rule 'no-empty-function' (remaining=221) +1ms
  eslint:rules Loading rule 'curly' (remaining=220) +3ms
  eslint:rules Loading rule 'lines-around-comment' (remaining=219) +1ms
  eslint:rules Loading rule 'max-len' (remaining=218) +1ms
  eslint:rules Loading rule 'no-confusing-arrow' (remaining=217) +0ms
  eslint:rules Loading rule 'no-mixed-operators' (remaining=216) +1ms
  eslint:rules Loading rule 'no-tabs' (remaining=215) +1ms
  eslint:rules Loading rule 'quotes' (remaining=214) +0ms
  eslint:rules Loading rule 'array-bracket-newline' (remaining=213) +0ms
  eslint:rules Loading rule 'array-bracket-spacing' (remaining=212) +0ms
  eslint:rules Loading rule 'array-element-newline' (remaining=211) +1ms
  eslint:rules Loading rule 'arrow-parens' (remaining=210) +1ms
  eslint:rules Loading rule 'arrow-spacing' (remaining=209) +0ms
  eslint:rules Loading rule 'block-spacing' (remaining=208) +1ms
  eslint:rules Loading rule 'brace-style' (remaining=207) +2ms
  eslint:rules Loading rule 'comma-dangle' (remaining=206) +0ms
  eslint:rules Loading rule 'comma-spacing' (remaining=205) +0ms
  eslint:rules Loading rule 'comma-style' (remaining=204) +1ms
  eslint:rules Loading rule 'computed-property-spacing' (remaining=203) +1ms
  eslint:rules Loading rule 'dot-location' (remaining=202) +1ms
  eslint:rules Loading rule 'eol-last' (remaining=201) +1ms
  eslint:rules Loading rule 'func-call-spacing' (remaining=200) +0ms
  eslint:rules Loading rule 'function-call-argument-newline' (remaining=199) +1ms
  eslint:rules Loading rule 'function-paren-newline' (remaining=198) +1ms
  eslint:rules Loading rule 'generator-star-spacing' (remaining=197) +1ms
  eslint:rules Loading rule 'implicit-arrow-linebreak' (remaining=196) +1ms
  eslint:rules Loading rule 'indent' (remaining=195) +0ms
  eslint:rules Loading rule 'jsx-quotes' (remaining=194) +1ms
  eslint:rules Loading rule 'key-spacing' (remaining=193) +0ms
  eslint:rules Loading rule 'keyword-spacing' (remaining=192) +1ms
  eslint:rules Loading rule 'linebreak-style' (remaining=191) +0ms
  eslint:rules Loading rule 'multiline-ternary' (remaining=190) +3ms
  eslint:rules Loading rule 'newline-per-chained-call' (remaining=189) +0ms
  eslint:rules Loading rule 'new-parens' (remaining=188) +1ms
  eslint:rules Loading rule 'no-extra-parens' (remaining=187) +0ms
  eslint:rules Loading rule 'no-floating-decimal' (remaining=186) +0ms
  eslint:rules Loading rule 'no-multi-spaces' (remaining=185) +1ms
  eslint:rules Loading rule 'no-multiple-empty-lines' (remaining=184) +0ms
  eslint:rules Loading rule 'no-trailing-spaces' (remaining=183) +1ms
  eslint:rules Loading rule 'no-whitespace-before-property' (remaining=182) +0ms
  eslint:rules Loading rule 'nonblock-statement-body-position' (remaining=181) +0ms
  eslint:rules Loading rule 'object-curly-newline' (remaining=180) +0ms
  eslint:rules Loading rule 'object-curly-spacing' (remaining=179) +1ms
  eslint:rules Loading rule 'object-property-newline' (remaining=178) +0ms
  eslint:rules Loading rule 'one-var-declaration-per-line' (remaining=177) +0ms
  eslint:rules Loading rule 'operator-linebreak' (remaining=176) +0ms
  eslint:rules Loading rule 'padded-blocks' (remaining=175) +1ms
  eslint:rules Loading rule 'quote-props' (remaining=174) +0ms
  eslint:rules Loading rule 'rest-spread-spacing' (remaining=173) +0ms
  eslint:rules Loading rule 'semi' (remaining=172) +0ms
  eslint:rules Loading rule 'semi-spacing' (remaining=171) +0ms
  eslint:rules Loading rule 'semi-style' (remaining=170) +1ms
  eslint:rules Loading rule 'space-before-blocks' (remaining=169) +0ms
  eslint:rules Loading rule 'space-before-function-paren' (remaining=168) +0ms
  eslint:rules Loading rule 'space-in-parens' (remaining=167) +1ms
  eslint:rules Loading rule 'space-infix-ops' (remaining=166) +0ms
  eslint:rules Loading rule 'space-unary-ops' (remaining=165) +0ms
  eslint:rules Loading rule 'switch-colon-spacing' (remaining=164) +1ms
  eslint:rules Loading rule 'template-curly-spacing' (remaining=163) +0ms
  eslint:rules Loading rule 'template-tag-spacing' (remaining=162) +0ms
  eslint:rules Loading rule 'unicode-bom' (remaining=161) +0ms
  eslint:rules Loading rule 'wrap-iife' (remaining=160) +1ms
  eslint:rules Loading rule 'wrap-regex' (remaining=159) +0ms
  eslint:rules Loading rule 'yield-star-spacing' (remaining=158) +0ms
  eslint:rules Loading rule 'indent-legacy' (remaining=157) +0ms
  eslint:rules Loading rule 'no-spaced-func' (remaining=156) +1ms
  eslint:rules Loading rule 'no-restricted-imports' (remaining=155) +2ms
  eslint:rules Loading rule 'no-restricted-syntax' (remaining=154) +7ms
  eslintrc:cascading-config-array-factory Configuration was determined: ConfigArray(88) [ { type: 'config', name: 'DefaultIgnorePattern', filePath: '', criteria: null, env: undefined, globals: undefined, ignorePattern: IgnorePattern { patterns: [Array], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', loose: false }, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json » eslint:recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint/conf/eslint-recommended.js', criteria: null, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { 'constructor-super': 'error', 'for-direction': 'error', 'getter-return': 'error', 'no-async-promise-executor': 'error', 'no-case-declarations': 'error', 'no-class-assign': 'error', 'no-compare-neg-zero': 'error', 'no-cond-assign': 'error', 'no-const-assign': 'error', 'no-constant-condition': 'error', 'no-control-regex': 'error', 'no-debugger': 'error', 'no-delete-var': 'error', 'no-dupe-args': 'error', 'no-dupe-class-members': 'error', 'no-dupe-else-if': 'error', 'no-dupe-keys': 'error', 'no-duplicate-case': 'error', 'no-empty': 'error', 'no-empty-character-class': 'error', 'no-empty-pattern': 'error', 'no-ex-assign': 'error', 'no-extra-boolean-cast': 'error', 'no-extra-semi': 'error', 'no-fallthrough': 'error', 'no-func-assign': 'error', 'no-global-assign': 'error', 'no-import-assign': 'error', 'no-inner-declarations': 'error', 'no-invalid-regexp': 'error', 'no-irregular-whitespace': 'error', 'no-misleading-character-class': 'error', 'no-mixed-spaces-and-tabs': 'error', 'no-new-symbol': 'error', 'no-obj-calls': 'error', 'no-octal': 'error', 'no-prototype-builtins': 'error', 'no-redeclare': 'error', 'no-regex-spaces': 'error', 'no-self-assign': 'error', 'no-setter-return': 'error', 'no-shadow-restricted-names': 'error', 'no-sparse-arrays': 'error', 'no-this-before-super': 'error', 'no-undef': 'error', 'no-unexpected-multiline': 'error', 'no-unreachable': 'error', 'no-unsafe-finally': 'error', 'no-unsafe-negation': 'error', 'no-unused-labels': 'error', 'no-unused-vars': 'error', 'no-useless-catch': 'error', 'no-useless-escape': 'error', 'no-with': 'error', 'require-yield': 'error', 'use-isnan': 'error', 'valid-typeof': 'error' }, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json » plugin:@typescript-eslint/eslint-recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js', criteria: null, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json » plugin:@typescript-eslint/eslint-recommended#overrides[0]', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { 'constructor-super': 'off', 'getter-return': 'off', 'no-const-assign': 'off', 'no-dupe-args': 'off', 'no-dupe-class-members': 'off', 'no-dupe-keys': 'off', 'no-func-assign': 'off', 'no-import-assign': 'off', 'no-new-symbol': 'off', 'no-obj-calls': 'off', 'no-redeclare': 'off', 'no-setter-return': 'off', 'no-this-before-super': 'off', 'no-undef': 'off', 'no-unreachable': 'off', 'no-unsafe-negation': 'off', 'no-var': 'error', 'prefer-const': 'error', 'prefer-rest-params': 'error', 'prefer-spread': 'error', 'valid-typeof': 'off' }, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json » plugin:@typescript-eslint/recommended » ./configs/base', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js', criteria: null, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: { error: null, filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js', id: '@typescript-eslint/parser', importerName: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json » plugin:@typescript-eslint/recommended » ./configs/base', importerPath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js' }, parserOptions: { sourceType: 'module' }, plugins: { '@typescript-eslint': [Object] }, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json » plugin:@typescript-eslint/recommended » ./configs/eslint-recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js', criteria: null, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json » plugin:@typescript-eslint/recommended » ./configs/eslint-recommended#overrides[0]', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { 'constructor-super': 'off', 'getter-return': 'off', 'no-const-assign': 'off', 'no-dupe-args': 'off', 'no-dupe-class-members': 'off', 'no-dupe-keys': 'off', 'no-func-assign': 'off', 'no-import-assign': 'off', 'no-new-symbol': 'off', 'no-obj-calls': 'off', 'no-redeclare': 'off', 'no-setter-return': 'off', 'no-this-before-super': 'off', 'no-undef': 'off', 'no-unreachable': 'off', 'no-unsafe-negation': 'off', 'no-var': 'error', 'prefer-const': 'error', 'prefer-rest-params': 'error', 'prefer-spread': 'error', 'valid-typeof': 'off' }, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json » plugin:@typescript-eslint/recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js', criteria: null, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { '@typescript-eslint/adjacent-overload-signatures': 'error', '@typescript-eslint/ban-ts-comment': 'error', '@typescript-eslint/ban-types': 'error', '@typescript-eslint/explicit-module-boundary-types': 'warn', 'no-array-constructor': 'off', '@typescript-eslint/no-array-constructor': 'error', 'no-empty-function': 'off', '@typescript-eslint/no-empty-function': 'error', '@typescript-eslint/no-empty-interface': 'error', '@typescript-eslint/no-explicit-any': 'warn', '@typescript-eslint/no-extra-non-null-assertion': 'error', 'no-extra-semi': 'off', '@typescript-eslint/no-extra-semi': 'error', '@typescript-eslint/no-inferrable-types': 'error', '@typescript-eslint/no-misused-new': 'error', '@typescript-eslint/no-namespace': 'error', '@typescript-eslint/no-non-null-asserted-optional-chain': 'error', '@typescript-eslint/no-non-null-assertion': 'warn', '@typescript-eslint/no-this-alias': 'error', 'no-unused-vars': 'off', '@typescript-eslint/no-unused-vars': 'warn', '@typescript-eslint/no-var-requires': 'error', '@typescript-eslint/prefer-as-const': 'error', '@typescript-eslint/prefer-namespace-keyword': 'error', '@typescript-eslint/triple-slash-reference': 'error' }, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json » eslint-config-prettier', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/index.js', criteria: null, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { curly: 0, 'lines-around-comment': 0, 'max-len': 0, 'no-confusing-arrow': 0, 'no-mixed-operators': 0, 'no-tabs': 0, 'no-unexpected-multiline': 0, quotes: 0, 'array-bracket-newline': 'off', 'array-bracket-spacing': 'off', 'array-element-newline': 'off', 'arrow-parens': 'off', 'arrow-spacing': 'off', 'block-spacing': 'off', 'brace-style': 'off', 'comma-dangle': 'off', 'comma-spacing': 'off', 'comma-style': 'off', 'computed-property-spacing': 'off', 'dot-location': 'off', 'eol-last': 'off', 'func-call-spacing': 'off', 'function-call-argument-newline': 'off', 'function-paren-newline': 'off', 'generator-star': 'off', 'generator-star-spacing': 'off', 'implicit-arrow-linebreak': 'off', indent: 'off', 'jsx-quotes': 'off', 'key-spacing': 'off', 'keyword-spacing': 'off', 'linebreak-style': 'off', 'multiline-ternary': 'off', 'newline-per-chained-call': 'off', 'new-parens': 'off', 'no-arrow-condition': 'off', 'no-comma-dangle': 'off', 'no-extra-parens': 'off', 'no-extra-semi': 'off', 'no-floating-decimal': 'off', 'no-mixed-spaces-and-tabs': 'off', 'no-multi-spaces': 'off', 'no-multiple-empty-lines': 'off', 'no-reserved-keys': 'off', 'no-space-before-semi': 'off', 'no-trailing-spaces': 'off', 'no-whitespace-before-property': 'off', 'no-wrap-func': 'off', 'nonblock-statement-body-position': 'off', 'object-curly-newline': 'off', 'object-curly-spacing': 'off', 'object-property-newline': 'off', 'one-var-declaration-per-line': 'off', 'operator-linebreak': 'off', 'padded-blocks': 'off', 'quote-props': 'off', 'rest-spread-spacing': 'off', semi: 'off', 'semi-spacing': 'off', 'semi-style': 'off', 'space-after-function-name': 'off', 'space-after-keywords': 'off', 'space-before-blocks': 'off', 'space-before-function-paren': 'off', 'space-before-function-parentheses': 'off', 'space-before-keywords': 'off', 'space-in-brackets': 'off', 'space-in-parens': 'off', 'space-infix-ops': 'off', 'space-return-throw-case': 'off', 'space-unary-ops': 'off', 'space-unary-word-ops': 'off', 'switch-colon-spacing': 'off', 'template-curly-spacing': 'off', 'template-tag-spacing': 'off', 'unicode-bom': 'off', 'wrap-iife': 'off', 'wrap-regex': 'off', 'yield-star-spacing': 'off', 'indent-legacy': 'off', 'no-spaced-func': 'off' }, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json » eslint-config-prettier/@typescript-eslint', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/@typescript-eslint.js', criteria: null, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { '@typescript-eslint/quotes': 0, '@typescript-eslint/brace-style': 'off', '@typescript-eslint/comma-dangle': 'off', '@typescript-eslint/comma-spacing': 'off', '@typescript-eslint/func-call-spacing': 'off', '@typescript-eslint/indent': 'off', '@typescript-eslint/keyword-spacing': 'off', '@typescript-eslint/member-delimiter-style': 'off', '@typescript-eslint/no-extra-parens': 'off', '@typescript-eslint/no-extra-semi': 'off', '@typescript-eslint/object-curly-spacing': 'off', '@typescript-eslint/semi': 'off', '@typescript-eslint/space-before-function-paren': 'off', '@typescript-eslint/space-infix-ops': 'off', '@typescript-eslint/type-annotation-spacing': 'off' }, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json', criteria: null, env: undefined, globals: undefined, ignorePattern: IgnorePattern { patterns: [Array], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel', loose: false }, noInlineConfig: undefined, parser: { error: null, filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js', id: '@typescript-eslint/parser', importerName: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json', importerPath: '/Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json' }, parserOptions: { ecmaVersion: 2015, sourceType: 'module', project: './tsconfig.*?.json' }, plugins: { '@nrwl/nx': [Object] }, processor: undefined, reportUnusedDisableDirectives: undefined, root: true, rules: {}, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[0] » plugin:@nrwl/nx/typescript » eslint:recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint/conf/eslint-recommended.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { 'constructor-super': 'error', 'for-direction': 'error', 'getter-return': 'error', 'no-async-promise-executor': 'error', 'no-case-declarations': 'error', 'no-class-assign': 'error', 'no-compare-neg-zero': 'error', 'no-cond-assign': 'error', 'no-const-assign': 'error', 'no-constant-condition': 'error', 'no-control-regex': 'error', 'no-debugger': 'error', 'no-delete-var': 'error', 'no-dupe-args': 'error', 'no-dupe-class-members': 'error', 'no-dupe-else-if': 'error', 'no-dupe-keys': 'error', 'no-duplicate-case': 'error', 'no-empty': 'error', 'no-empty-character-class': 'error', 'no-empty-pattern': 'error', 'no-ex-assign': 'error', 'no-extra-boolean-cast': 'error', 'no-extra-semi': 'error', 'no-fallthrough': 'error', 'no-func-assign': 'error', 'no-global-assign': 'error', 'no-import-assign': 'error', 'no-inner-declarations': 'error', 'no-invalid-regexp': 'error', 'no-irregular-whitespace': 'error', 'no-misleading-character-class': 'error', 'no-mixed-spaces-and-tabs': 'error', 'no-new-symbol': 'error', 'no-obj-calls': 'error', 'no-octal': 'error', 'no-prototype-builtins': 'error', 'no-redeclare': 'error', 'no-regex-spaces': 'error', 'no-self-assign': 'error', 'no-setter-return': 'error', 'no-shadow-restricted-names': 'error', 'no-sparse-arrays': 'error', 'no-this-before-super': 'error', 'no-undef': 'error', 'no-unexpected-multiline': 'error', 'no-unreachable': 'error', 'no-unsafe-finally': 'error', 'no-unsafe-negation': 'error', 'no-unused-labels': 'error', 'no-unused-vars': 'error', 'no-useless-catch': 'error', 'no-useless-escape': 'error', 'no-with': 'error', 'require-yield': 'error', 'use-isnan': 'error', 'valid-typeof': 'error' }, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[0] » plugin:@nrwl/nx/typescript » plugin:@typescript-eslint/eslint-recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[0] » plugin:@nrwl/nx/typescript » plugin:@typescript-eslint/eslint-recommended#overrides[0]', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js', criteria: { AND: [Array], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { 'constructor-super': 'off', 'getter-return': 'off', 'no-const-assign': 'off', 'no-dupe-args': 'off', 'no-dupe-class-members': 'off', 'no-dupe-keys': 'off', 'no-func-assign': 'off', 'no-import-assign': 'off', 'no-new-symbol': 'off', 'no-obj-calls': 'off', 'no-redeclare': 'off', 'no-setter-return': 'off', 'no-this-before-super': 'off', 'no-undef': 'off', 'no-unreachable': 'off', 'no-unsafe-negation': 'off', 'no-var': 'error', 'prefer-const': 'error', 'prefer-rest-params': 'error', 'prefer-spread': 'error', 'valid-typeof': 'off' }, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[0] » plugin:@nrwl/nx/typescript » plugin:@typescript-eslint/recommended » ./configs/base', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: { error: null, filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js', id: '@typescript-eslint/parser', importerName: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[0] » plugin:@nrwl/nx/typescript » plugin:@typescript-eslint/recommended » ./configs/base', importerPath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js' }, parserOptions: { sourceType: 'module' }, plugins: { '@typescript-eslint': [Object] }, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[0] » plugin:@nrwl/nx/typescript » plugin:@typescript-eslint/recommended » ./configs/eslint-recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[0] » plugin:@nrwl/nx/typescript » plugin:@typescript-eslint/recommended » ./configs/eslint-recommended#overrides[0]', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js', criteria: { AND: [Array], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { 'constructor-super': 'off', 'getter-return': 'off', 'no-const-assign': 'off', 'no-dupe-args': 'off', 'no-dupe-class-members': 'off', 'no-dupe-keys': 'off', 'no-func-assign': 'off', 'no-import-assign': 'off', 'no-new-symbol': 'off', 'no-obj-calls': 'off', 'no-redeclare': 'off', 'no-setter-return': 'off', 'no-this-before-super': 'off', 'no-undef': 'off', 'no-unreachable': 'off', 'no-unsafe-negation': 'off', 'no-var': 'error', 'prefer-const': 'error', 'prefer-rest-params': 'error', 'prefer-spread': 'error', 'valid-typeof': 'off' }, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[0] » plugin:@nrwl/nx/typescript » plugin:@typescript-eslint/recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { '@typescript-eslint/adjacent-overload-signatures': 'error', '@typescript-eslint/ban-ts-comment': 'error', '@typescript-eslint/ban-types': 'error', '@typescript-eslint/explicit-module-boundary-types': 'warn', 'no-array-constructor': 'off', '@typescript-eslint/no-array-constructor': 'error', 'no-empty-function': 'off', '@typescript-eslint/no-empty-function': 'error', '@typescript-eslint/no-empty-interface': 'error', '@typescript-eslint/no-explicit-any': 'warn', '@typescript-eslint/no-extra-non-null-assertion': 'error', 'no-extra-semi': 'off', '@typescript-eslint/no-extra-semi': 'error', '@typescript-eslint/no-inferrable-types': 'error', '@typescript-eslint/no-misused-new': 'error', '@typescript-eslint/no-namespace': 'error', '@typescript-eslint/no-non-null-asserted-optional-chain': 'error', '@typescript-eslint/no-non-null-assertion': 'warn', '@typescript-eslint/no-this-alias': 'error', 'no-unused-vars': 'off', '@typescript-eslint/no-unused-vars': 'warn', '@typescript-eslint/no-var-requires': 'error', '@typescript-eslint/prefer-as-const': 'error', '@typescript-eslint/prefer-namespace-keyword': 'error', '@typescript-eslint/triple-slash-reference': 'error' }, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[0] » plugin:@nrwl/nx/typescript » eslint-config-prettier', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { curly: 0, 'lines-around-comment': 0, 'max-len': 0, 'no-confusing-arrow': 0, 'no-mixed-operators': 0, 'no-tabs': 0, 'no-unexpected-multiline': 0, quotes: 0, 'array-bracket-newline': 'off', 'array-bracket-spacing': 'off', 'array-element-newline': 'off', 'arrow-parens': 'off', 'arrow-spacing': 'off', 'block-spacing': 'off', 'brace-style': 'off', 'comma-dangle': 'off', 'comma-spacing': 'off', 'comma-style': 'off', 'computed-property-spacing': 'off', 'dot-location': 'off', 'eol-last': 'off', 'func-call-spacing': 'off', 'function-call-argument-newline': 'off', 'function-paren-newline': 'off', 'generator-star': 'off', 'generator-star-spacing': 'off', 'implicit-arrow-linebreak': 'off', indent: 'off', 'jsx-quotes': 'off', 'key-spacing': 'off', 'keyword-spacing': 'off', 'linebreak-style': 'off', 'multiline-ternary': 'off', 'newline-per-chained-call': 'off', 'new-parens': 'off', 'no-arrow-condition': 'off', 'no-comma-dangle': 'off', 'no-extra-parens': 'off', 'no-extra-semi': 'off', 'no-floating-decimal': 'off', 'no-mixed-spaces-and-tabs': 'off', 'no-multi-spaces': 'off', 'no-multiple-empty-lines': 'off', 'no-reserved-keys': 'off', 'no-space-before-semi': 'off', 'no-trailing-spaces': 'off', 'no-whitespace-before-property': 'off', 'no-wrap-func': 'off', 'nonblock-statement-body-position': 'off', 'object-curly-newline': 'off', 'object-curly-spacing': 'off', 'object-property-newline': 'off', 'one-var-declaration-per-line': 'off', 'operator-linebreak': 'off', 'padded-blocks': 'off', 'quote-props': 'off', 'rest-spread-spacing': 'off', semi: 'off', 'semi-spacing': 'off', 'semi-style': 'off', 'space-after-function-name': 'off', 'space-after-keywords': 'off', 'space-before-blocks': 'off', 'space-before-function-paren': 'off', 'space-before-function-parentheses': 'off', 'space-before-keywords': 'off', 'space-in-brackets': 'off', 'space-in-parens': 'off', 'space-infix-ops': 'off', 'space-return-throw-case': 'off', 'space-unary-ops': 'off', 'space-unary-word-ops': 'off', 'switch-colon-spacing': 'off', 'template-curly-spacing': 'off', 'template-tag-spacing': 'off', 'unicode-bom': 'off', 'wrap-iife': 'off', 'wrap-regex': 'off', 'yield-star-spacing': 'off', 'indent-legacy': 'off', 'no-spaced-func': 'off' }, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[0] » plugin:@nrwl/nx/typescript » eslint-config-prettier/@typescript-eslint', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/@typescript-eslint.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { '@typescript-eslint/quotes': 0, '@typescript-eslint/brace-style': 'off', '@typescript-eslint/comma-dangle': 'off', '@typescript-eslint/comma-spacing': 'off', '@typescript-eslint/func-call-spacing': 'off', '@typescript-eslint/indent': 'off', '@typescript-eslint/keyword-spacing': 'off', '@typescript-eslint/member-delimiter-style': 'off', '@typescript-eslint/no-extra-parens': 'off', '@typescript-eslint/no-extra-semi': 'off', '@typescript-eslint/object-curly-spacing': 'off', '@typescript-eslint/semi': 'off', '@typescript-eslint/space-before-function-paren': 'off', '@typescript-eslint/space-infix-ops': 'off', '@typescript-eslint/type-annotation-spacing': 'off' }, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[0] » plugin:@nrwl/nx/typescript', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: { error: null, filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js', id: '@typescript-eslint/parser', importerName: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[0] » plugin:@nrwl/nx/typescript', importerPath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js' }, parserOptions: { ecmaVersion: 2020, sourceType: 'module' }, plugins: { '@typescript-eslint': [Object] }, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { '@typescript-eslint/explicit-member-accessibility': 'off', '@typescript-eslint/explicit-module-boundary-types': 'off', '@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/no-parameter-properties': 'off' }, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[0] » plugin:@nrwl/nx/typescript#overrides[0]', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js', criteria: { AND: [Array], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { '@typescript-eslint/no-unused-vars': 'off' }, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[0]', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { '@typescript-eslint/no-explicit-any': 'off', '@typescript-eslint/no-unused-vars': [Array], '@typescript-eslint/explicit-member-accessibility': 'off', '@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/no-parameter-properties': 'off', '@typescript-eslint/no-namespace': 'off', '@typescript-eslint/explicit-module-boundary-types': 'off', '@nrwl/nx/enforce-module-boundaries': [Array] }, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[1] » plugin:@nrwl/nx/javascript » eslint:recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint/conf/eslint-recommended.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { 'constructor-super': 'error', 'for-direction': 'error', 'getter-return': 'error', 'no-async-promise-executor': 'error', 'no-case-declarations': 'error', 'no-class-assign': 'error', 'no-compare-neg-zero': 'error', 'no-cond-assign': 'error', 'no-const-assign': 'error', 'no-constant-condition': 'error', 'no-control-regex': 'error', 'no-debugger': 'error', 'no-delete-var': 'error', 'no-dupe-args': 'error', 'no-dupe-class-members': 'error', 'no-dupe-else-if': 'error', 'no-dupe-keys': 'error', 'no-duplicate-case': 'error', 'no-empty': 'error', 'no-empty-character-class': 'error', 'no-empty-pattern': 'error', 'no-ex-assign': 'error', 'no-extra-boolean-cast': 'error', 'no-extra-semi': 'error', 'no-fallthrough': 'error', 'no-func-assign': 'error', 'no-global-assign': 'error', 'no-import-assign': 'error', 'no-inner-declarations': 'error', 'no-invalid-regexp': 'error', 'no-irregular-whitespace': 'error', 'no-misleading-character-class': 'error', 'no-mixed-spaces-and-tabs': 'error', 'no-new-symbol': 'error', 'no-obj-calls': 'error', 'no-octal': 'error', 'no-prototype-builtins': 'error', 'no-redeclare': 'error', 'no-regex-spaces': 'error', 'no-self-assign': 'error', 'no-setter-return': 'error', 'no-shadow-restricted-names': 'error', 'no-sparse-arrays': 'error', 'no-this-before-super': 'error', 'no-undef': 'error', 'no-unexpected-multiline': 'error', 'no-unreachable': 'error', 'no-unsafe-finally': 'error', 'no-unsafe-negation': 'error', 'no-unused-labels': 'error', 'no-unused-vars': 'error', 'no-useless-catch': 'error', 'no-useless-escape': 'error', 'no-with': 'error', 'require-yield': 'error', 'use-isnan': 'error', 'valid-typeof': 'error' }, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[1] » plugin:@nrwl/nx/javascript » plugin:@typescript-eslint/eslint-recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[1] » plugin:@nrwl/nx/javascript » plugin:@typescript-eslint/eslint-recommended#overrides[0]', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js', criteria: { AND: [Array], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { 'constructor-super': 'off', 'getter-return': 'off', 'no-const-assign': 'off', 'no-dupe-args': 'off', 'no-dupe-class-members': 'off', 'no-dupe-keys': 'off', 'no-func-assign': 'off', 'no-import-assign': 'off', 'no-new-symbol': 'off', 'no-obj-calls': 'off', 'no-redeclare': 'off', 'no-setter-return': 'off', 'no-this-before-super': 'off', 'no-undef': 'off', 'no-unreachable': 'off', 'no-unsafe-negation': 'off', 'no-var': 'error', 'prefer-const': 'error', 'prefer-rest-params': 'error', 'prefer-spread': 'error', 'valid-typeof': 'off' }, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[1] » plugin:@nrwl/nx/javascript » plugin:@typescript-eslint/recommended » ./configs/base', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: { error: null, filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js', id: '@typescript-eslint/parser', importerName: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[1] » plugin:@nrwl/nx/javascript » plugin:@typescript-eslint/recommended » ./configs/base', importerPath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js' }, parserOptions: { sourceType: 'module' }, plugins: { '@typescript-eslint': [Object] }, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[1] » plugin:@nrwl/nx/javascript » plugin:@typescript-eslint/recommended » ./configs/eslint-recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[1] » plugin:@nrwl/nx/javascript » plugin:@typescript-eslint/recommended » ./configs/eslint-recommended#overrides[0]', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js', criteria: { AND: [Array], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { 'constructor-super': 'off', 'getter-return': 'off', 'no-const-assign': 'off', 'no-dupe-args': 'off', 'no-dupe-class-members': 'off', 'no-dupe-keys': 'off', 'no-func-assign': 'off', 'no-import-assign': 'off', 'no-new-symbol': 'off', 'no-obj-calls': 'off', 'no-redeclare': 'off', 'no-setter-return': 'off', 'no-this-before-super': 'off', 'no-undef': 'off', 'no-unreachable': 'off', 'no-unsafe-negation': 'off', 'no-var': 'error', 'prefer-const': 'error', 'prefer-rest-params': 'error', 'prefer-spread': 'error', 'valid-typeof': 'off' }, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[1] » plugin:@nrwl/nx/javascript » plugin:@typescript-eslint/recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { '@typescript-eslint/adjacent-overload-signatures': 'error', '@typescript-eslint/ban-ts-comment': 'error', '@typescript-eslint/ban-types': 'error', '@typescript-eslint/explicit-module-boundary-types': 'warn', 'no-array-constructor': 'off', '@typescript-eslint/no-array-constructor': 'error', 'no-empty-function': 'off', '@typescript-eslint/no-empty-function': 'error', '@typescript-eslint/no-empty-interface': 'error', '@typescript-eslint/no-explicit-any': 'warn', '@typescript-eslint/no-extra-non-null-assertion': 'error', 'no-extra-semi': 'off', '@typescript-eslint/no-extra-semi': 'error', '@typescript-eslint/no-inferrable-types': 'error', '@typescript-eslint/no-misused-new': 'error', '@typescript-eslint/no-namespace': 'error', '@typescript-eslint/no-non-null-asserted-optional-chain': 'error', '@typescript-eslint/no-non-null-assertion': 'warn', '@typescript-eslint/no-this-alias': 'error', 'no-unused-vars': 'off', '@typescript-eslint/no-unused-vars': 'warn', '@typescript-eslint/no-var-requires': 'error', '@typescript-eslint/prefer-as-const': 'error', '@typescript-eslint/prefer-namespace-keyword': 'error', '@typescript-eslint/triple-slash-reference': 'error' }, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[1] » plugin:@nrwl/nx/javascript » eslint-config-prettier', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { curly: 0, 'lines-around-comment': 0, 'max-len': 0, 'no-confusing-arrow': 0, 'no-mixed-operators': 0, 'no-tabs': 0, 'no-unexpected-multiline': 0, quotes: 0, 'array-bracket-newline': 'off', 'array-bracket-spacing': 'off', 'array-element-newline': 'off', 'arrow-parens': 'off', 'arrow-spacing': 'off', 'block-spacing': 'off', 'brace-style': 'off', 'comma-dangle': 'off', 'comma-spacing': 'off', 'comma-style': 'off', 'computed-property-spacing': 'off', 'dot-location': 'off', 'eol-last': 'off', 'func-call-spacing': 'off', 'function-call-argument-newline': 'off', 'function-paren-newline': 'off', 'generator-star': 'off', 'generator-star-spacing': 'off', 'implicit-arrow-linebreak': 'off', indent: 'off', 'jsx-quotes': 'off', 'key-spacing': 'off', 'keyword-spacing': 'off', 'linebreak-style': 'off', 'multiline-ternary': 'off', 'newline-per-chained-call': 'off', 'new-parens': 'off', 'no-arrow-condition': 'off', 'no-comma-dangle': 'off', 'no-extra-parens': 'off', 'no-extra-semi': 'off', 'no-floating-decimal': 'off', 'no-mixed-spaces-and-tabs': 'off', 'no-multi-spaces': 'off', 'no-multiple-empty-lines': 'off', 'no-reserved-keys': 'off', 'no-space-before-semi': 'off', 'no-trailing-spaces': 'off', 'no-whitespace-before-property': 'off', 'no-wrap-func': 'off', 'nonblock-statement-body-position': 'off', 'object-curly-newline': 'off', 'object-curly-spacing': 'off', 'object-property-newline': 'off', 'one-var-declaration-per-line': 'off', 'operator-linebreak': 'off', 'padded-blocks': 'off', 'quote-props': 'off', 'rest-spread-spacing': 'off', semi: 'off', 'semi-spacing': 'off', 'semi-style': 'off', 'space-after-function-name': 'off', 'space-after-keywords': 'off', 'space-before-blocks': 'off', 'space-before-function-paren': 'off', 'space-before-function-parentheses': 'off', 'space-before-keywords': 'off', 'space-in-brackets': 'off', 'space-in-parens': 'off', 'space-infix-ops': 'off', 'space-return-throw-case': 'off', 'space-unary-ops': 'off', 'space-unary-word-ops': 'off', 'switch-colon-spacing': 'off', 'template-curly-spacing': 'off', 'template-tag-spacing': 'off', 'unicode-bom': 'off', 'wrap-iife': 'off', 'wrap-regex': 'off', 'yield-star-spacing': 'off', 'indent-legacy': 'off', 'no-spaced-func': 'off' }, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[1] » plugin:@nrwl/nx/javascript » eslint-config-prettier/@typescript-eslint', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/@typescript-eslint.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { '@typescript-eslint/quotes': 0, '@typescript-eslint/brace-style': 'off', '@typescript-eslint/comma-dangle': 'off', '@typescript-eslint/comma-spacing': 'off', '@typescript-eslint/func-call-spacing': 'off', '@typescript-eslint/indent': 'off', '@typescript-eslint/keyword-spacing': 'off', '@typescript-eslint/member-delimiter-style': 'off', '@typescript-eslint/no-extra-parens': 'off', '@typescript-eslint/no-extra-semi': 'off', '@typescript-eslint/object-curly-spacing': 'off', '@typescript-eslint/semi': 'off', '@typescript-eslint/space-before-function-paren': 'off', '@typescript-eslint/space-infix-ops': 'off', '@typescript-eslint/type-annotation-spacing': 'off' }, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[1] » plugin:@nrwl/nx/javascript', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: { error: null, filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js', id: '@typescript-eslint/parser', importerName: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[1] » plugin:@nrwl/nx/javascript', importerPath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js' }, parserOptions: { ecmaVersion: 2020, sourceType: 'module' }, plugins: { '@typescript-eslint': [Object] }, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { '@typescript-eslint/explicit-member-accessibility': 'off', '@typescript-eslint/explicit-module-boundary-types': 'off', '@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/no-parameter-properties': 'off' }, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json » ../../../../../.eslintrc.json#overrides[1]', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: {}, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json', criteria: null, env: undefined, globals: undefined, ignorePattern: IgnorePattern { patterns: [Array], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel', loose: false }, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json#overrides[0] » plugin:@nrwl/nx/angular » plugin:@angular-eslint/recommended » ./configs/base.json', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/configs/base.json', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: { error: null, filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js', id: '@typescript-eslint/parser', importerName: 'libs/shared/ui/components/panel/.eslintrc.json#overrides[0] » plugin:@nrwl/nx/angular » plugin:@angular-eslint/recommended » ./configs/base.json', importerPath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/configs/base.json' }, parserOptions: { ecmaVersion: 2020, sourceType: 'module', project: './tsconfig.json' }, plugins: { '@typescript-eslint': [Object], '@angular-eslint': [Object] }, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json#overrides[0] » plugin:@nrwl/nx/angular » plugin:@angular-eslint/recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { 'no-restricted-imports': [Array], '@typescript-eslint/member-ordering': [Array], 'no-restricted-syntax': [Array], '@typescript-eslint/no-inferrable-types': [Array], '@typescript-eslint/no-non-null-assertion': 'error', 'no-fallthrough': 'error', '@angular-eslint/component-class-suffix': 'error', '@angular-eslint/contextual-lifecycle': 'error', '@angular-eslint/directive-class-suffix': 'error', '@angular-eslint/no-conflicting-lifecycle': 'error', '@angular-eslint/no-empty-lifecycle-method': 'error', '@angular-eslint/no-host-metadata-property': 'error', '@angular-eslint/no-input-rename': 'error', '@angular-eslint/no-inputs-metadata-property': 'error', '@angular-eslint/no-output-native': 'error', '@angular-eslint/no-output-on-prefix': 'error', '@angular-eslint/no-output-rename': 'error', '@angular-eslint/no-outputs-metadata-property': 'error', '@angular-eslint/use-lifecycle-interface': 'warn', '@angular-eslint/use-pipe-transform-interface': 'error' }, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json#overrides[0] » plugin:@nrwl/nx/angular', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: { '@angular-eslint': [Object] }, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: {}, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json#overrides[0] » plugin:@angular-eslint/template/process-inline-templates', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: { error: null, filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js', id: '@typescript-eslint/parser', importerName: 'libs/shared/ui/components/panel/.eslintrc.json#overrides[0] » plugin:@angular-eslint/template/process-inline-templates', importerPath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js' }, parserOptions: { ecmaVersion: 2020, sourceType: 'module' }, plugins: { '@angular-eslint/template': [Object] }, processor: '@angular-eslint/template/extract-inline-html', reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json#overrides[0]', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: { project: [Array] }, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { '@angular-eslint/directive-selector': [Array], '@angular-eslint/component-selector': [Array] }, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json#overrides[1] » plugin:@nrwl/nx/angular-template » plugin:@angular-eslint/template/recommended » ./configs/base.json', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/configs/base.json', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: { error: null, filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/template-parser/dist/index.js', id: '@angular-eslint/template-parser', importerName: 'libs/shared/ui/components/panel/.eslintrc.json#overrides[1] » plugin:@nrwl/nx/angular-template » plugin:@angular-eslint/template/recommended » ./configs/base.json', importerPath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/configs/base.json' }, parserOptions: undefined, plugins: { '@angular-eslint/template': [Object] }, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json#overrides[1] » plugin:@nrwl/nx/angular-template » plugin:@angular-eslint/template/recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { '@angular-eslint/template/banana-in-box': 'error', '@angular-eslint/template/no-negated-async': 'error' }, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json#overrides[1] » plugin:@nrwl/nx/angular-template', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: { '@angular-eslint/template': [Object] }, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: {}, settings: undefined }, { type: 'config', name: 'libs/shared/ui/components/panel/.eslintrc.json#overrides[1]', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: {}, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json » eslint:recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint/conf/eslint-recommended.js', criteria: null, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { 'constructor-super': 'error', 'for-direction': 'error', 'getter-return': 'error', 'no-async-promise-executor': 'error', 'no-case-declarations': 'error', 'no-class-assign': 'error', 'no-compare-neg-zero': 'error', 'no-cond-assign': 'error', 'no-const-assign': 'error', 'no-constant-condition': 'error', 'no-control-regex': 'error', 'no-debugger': 'error', 'no-delete-var': 'error', 'no-dupe-args': 'error', 'no-dupe-class-members': 'error', 'no-dupe-else-if': 'error', 'no-dupe-keys': 'error', 'no-duplicate-case': 'error', 'no-empty': 'error', 'no-empty-character-class': 'error', 'no-empty-pattern': 'error', 'no-ex-assign': 'error', 'no-extra-boolean-cast': 'error', 'no-extra-semi': 'error', 'no-fallthrough': 'error', 'no-func-assign': 'error', 'no-global-assign': 'error', 'no-import-assign': 'error', 'no-inner-declarations': 'error', 'no-invalid-regexp': 'error', 'no-irregular-whitespace': 'error', 'no-misleading-character-class': 'error', 'no-mixed-spaces-and-tabs': 'error', 'no-new-symbol': 'error', 'no-obj-calls': 'error', 'no-octal': 'error', 'no-prototype-builtins': 'error', 'no-redeclare': 'error', 'no-regex-spaces': 'error', 'no-self-assign': 'error', 'no-setter-return': 'error', 'no-shadow-restricted-names': 'error', 'no-sparse-arrays': 'error', 'no-this-before-super': 'error', 'no-undef': 'error', 'no-unexpected-multiline': 'error', 'no-unreachable': 'error', 'no-unsafe-finally': 'error', 'no-unsafe-negation': 'error', 'no-unused-labels': 'error', 'no-unused-vars': 'error', 'no-useless-catch': 'error', 'no-useless-escape': 'error', 'no-with': 'error', 'require-yield': 'error', 'use-isnan': 'error', 'valid-typeof': 'error' }, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json » plugin:@typescript-eslint/eslint-recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js', criteria: null, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json » plugin:@typescript-eslint/eslint-recommended#overrides[0]', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { 'constructor-super': 'off', 'getter-return': 'off', 'no-const-assign': 'off', 'no-dupe-args': 'off', 'no-dupe-class-members': 'off', 'no-dupe-keys': 'off', 'no-func-assign': 'off', 'no-import-assign': 'off', 'no-new-symbol': 'off', 'no-obj-calls': 'off', 'no-redeclare': 'off', 'no-setter-return': 'off', 'no-this-before-super': 'off', 'no-undef': 'off', 'no-unreachable': 'off', 'no-unsafe-negation': 'off', 'no-var': 'error', 'prefer-const': 'error', 'prefer-rest-params': 'error', 'prefer-spread': 'error', 'valid-typeof': 'off' }, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json » plugin:@typescript-eslint/recommended » ./configs/base', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js', criteria: null, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: { error: null, filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js', id: '@typescript-eslint/parser', importerName: '--config » ../../../../../.eslintrc.json » plugin:@typescript-eslint/recommended » ./configs/base', importerPath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js' }, parserOptions: { sourceType: 'module' }, plugins: { '@typescript-eslint': [Object] }, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json » plugin:@typescript-eslint/recommended » ./configs/eslint-recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js', criteria: null, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json » plugin:@typescript-eslint/recommended » ./configs/eslint-recommended#overrides[0]', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { 'constructor-super': 'off', 'getter-return': 'off', 'no-const-assign': 'off', 'no-dupe-args': 'off', 'no-dupe-class-members': 'off', 'no-dupe-keys': 'off', 'no-func-assign': 'off', 'no-import-assign': 'off', 'no-new-symbol': 'off', 'no-obj-calls': 'off', 'no-redeclare': 'off', 'no-setter-return': 'off', 'no-this-before-super': 'off', 'no-undef': 'off', 'no-unreachable': 'off', 'no-unsafe-negation': 'off', 'no-var': 'error', 'prefer-const': 'error', 'prefer-rest-params': 'error', 'prefer-spread': 'error', 'valid-typeof': 'off' }, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json » plugin:@typescript-eslint/recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js', criteria: null, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { '@typescript-eslint/adjacent-overload-signatures': 'error', '@typescript-eslint/ban-ts-comment': 'error', '@typescript-eslint/ban-types': 'error', '@typescript-eslint/explicit-module-boundary-types': 'warn', 'no-array-constructor': 'off', '@typescript-eslint/no-array-constructor': 'error', 'no-empty-function': 'off', '@typescript-eslint/no-empty-function': 'error', '@typescript-eslint/no-empty-interface': 'error', '@typescript-eslint/no-explicit-any': 'warn', '@typescript-eslint/no-extra-non-null-assertion': 'error', 'no-extra-semi': 'off', '@typescript-eslint/no-extra-semi': 'error', '@typescript-eslint/no-inferrable-types': 'error', '@typescript-eslint/no-misused-new': 'error', '@typescript-eslint/no-namespace': 'error', '@typescript-eslint/no-non-null-asserted-optional-chain': 'error', '@typescript-eslint/no-non-null-assertion': 'warn', '@typescript-eslint/no-this-alias': 'error', 'no-unused-vars': 'off', '@typescript-eslint/no-unused-vars': 'warn', '@typescript-eslint/no-var-requires': 'error', '@typescript-eslint/prefer-as-const': 'error', '@typescript-eslint/prefer-namespace-keyword': 'error', '@typescript-eslint/triple-slash-reference': 'error' }, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json » eslint-config-prettier', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/index.js', criteria: null, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { curly: 0, 'lines-around-comment': 0, 'max-len': 0, 'no-confusing-arrow': 0, 'no-mixed-operators': 0, 'no-tabs': 0, 'no-unexpected-multiline': 0, quotes: 0, 'array-bracket-newline': 'off', 'array-bracket-spacing': 'off', 'array-element-newline': 'off', 'arrow-parens': 'off', 'arrow-spacing': 'off', 'block-spacing': 'off', 'brace-style': 'off', 'comma-dangle': 'off', 'comma-spacing': 'off', 'comma-style': 'off', 'computed-property-spacing': 'off', 'dot-location': 'off', 'eol-last': 'off', 'func-call-spacing': 'off', 'function-call-argument-newline': 'off', 'function-paren-newline': 'off', 'generator-star': 'off', 'generator-star-spacing': 'off', 'implicit-arrow-linebreak': 'off', indent: 'off', 'jsx-quotes': 'off', 'key-spacing': 'off', 'keyword-spacing': 'off', 'linebreak-style': 'off', 'multiline-ternary': 'off', 'newline-per-chained-call': 'off', 'new-parens': 'off', 'no-arrow-condition': 'off', 'no-comma-dangle': 'off', 'no-extra-parens': 'off', 'no-extra-semi': 'off', 'no-floating-decimal': 'off', 'no-mixed-spaces-and-tabs': 'off', 'no-multi-spaces': 'off', 'no-multiple-empty-lines': 'off', 'no-reserved-keys': 'off', 'no-space-before-semi': 'off', 'no-trailing-spaces': 'off', 'no-whitespace-before-property': 'off', 'no-wrap-func': 'off', 'nonblock-statement-body-position': 'off', 'object-curly-newline': 'off', 'object-curly-spacing': 'off', 'object-property-newline': 'off', 'one-var-declaration-per-line': 'off', 'operator-linebreak': 'off', 'padded-blocks': 'off', 'quote-props': 'off', 'rest-spread-spacing': 'off', semi: 'off', 'semi-spacing': 'off', 'semi-style': 'off', 'space-after-function-name': 'off', 'space-after-keywords': 'off', 'space-before-blocks': 'off', 'space-before-function-paren': 'off', 'space-before-function-parentheses': 'off', 'space-before-keywords': 'off', 'space-in-brackets': 'off', 'space-in-parens': 'off', 'space-infix-ops': 'off', 'space-return-throw-case': 'off', 'space-unary-ops': 'off', 'space-unary-word-ops': 'off', 'switch-colon-spacing': 'off', 'template-curly-spacing': 'off', 'template-tag-spacing': 'off', 'unicode-bom': 'off', 'wrap-iife': 'off', 'wrap-regex': 'off', 'yield-star-spacing': 'off', 'indent-legacy': 'off', 'no-spaced-func': 'off' }, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json » eslint-config-prettier/@typescript-eslint', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/@typescript-eslint.js', criteria: null, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { '@typescript-eslint/quotes': 0, '@typescript-eslint/brace-style': 'off', '@typescript-eslint/comma-dangle': 'off', '@typescript-eslint/comma-spacing': 'off', '@typescript-eslint/func-call-spacing': 'off', '@typescript-eslint/indent': 'off', '@typescript-eslint/keyword-spacing': 'off', '@typescript-eslint/member-delimiter-style': 'off', '@typescript-eslint/no-extra-parens': 'off', '@typescript-eslint/no-extra-semi': 'off', '@typescript-eslint/object-curly-spacing': 'off', '@typescript-eslint/semi': 'off', '@typescript-eslint/space-before-function-paren': 'off', '@typescript-eslint/space-infix-ops': 'off', '@typescript-eslint/type-annotation-spacing': 'off' }, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json', criteria: null, env: undefined, globals: undefined, ignorePattern: IgnorePattern { patterns: [Array], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', loose: false }, noInlineConfig: undefined, parser: { error: null, filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js', id: '@typescript-eslint/parser', importerName: '--config » ../../../../../.eslintrc.json', importerPath: '/Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json' }, parserOptions: { ecmaVersion: 2015, sourceType: 'module', project: './tsconfig.*?.json' }, plugins: { '@nrwl/nx': [Object] }, processor: undefined, reportUnusedDisableDirectives: undefined, root: true, rules: {}, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json#overrides[0] » plugin:@nrwl/nx/typescript » eslint:recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint/conf/eslint-recommended.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { 'constructor-super': 'error', 'for-direction': 'error', 'getter-return': 'error', 'no-async-promise-executor': 'error', 'no-case-declarations': 'error', 'no-class-assign': 'error', 'no-compare-neg-zero': 'error', 'no-cond-assign': 'error', 'no-const-assign': 'error', 'no-constant-condition': 'error', 'no-control-regex': 'error', 'no-debugger': 'error', 'no-delete-var': 'error', 'no-dupe-args': 'error', 'no-dupe-class-members': 'error', 'no-dupe-else-if': 'error', 'no-dupe-keys': 'error', 'no-duplicate-case': 'error', 'no-empty': 'error', 'no-empty-character-class': 'error', 'no-empty-pattern': 'error', 'no-ex-assign': 'error', 'no-extra-boolean-cast': 'error', 'no-extra-semi': 'error', 'no-fallthrough': 'error', 'no-func-assign': 'error', 'no-global-assign': 'error', 'no-import-assign': 'error', 'no-inner-declarations': 'error', 'no-invalid-regexp': 'error', 'no-irregular-whitespace': 'error', 'no-misleading-character-class': 'error', 'no-mixed-spaces-and-tabs': 'error', 'no-new-symbol': 'error', 'no-obj-calls': 'error', 'no-octal': 'error', 'no-prototype-builtins': 'error', 'no-redeclare': 'error', 'no-regex-spaces': 'error', 'no-self-assign': 'error', 'no-setter-return': 'error', 'no-shadow-restricted-names': 'error', 'no-sparse-arrays': 'error', 'no-this-before-super': 'error', 'no-undef': 'error', 'no-unexpected-multiline': 'error', 'no-unreachable': 'error', 'no-unsafe-finally': 'error', 'no-unsafe-negation': 'error', 'no-unused-labels': 'error', 'no-unused-vars': 'error', 'no-useless-catch': 'error', 'no-useless-escape': 'error', 'no-with': 'error', 'require-yield': 'error', 'use-isnan': 'error', 'valid-typeof': 'error' }, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json#overrides[0] » plugin:@nrwl/nx/typescript » plugin:@typescript-eslint/eslint-recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json#overrides[0] » plugin:@nrwl/nx/typescript » plugin:@typescript-eslint/eslint-recommended#overrides[0]', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js', criteria: { AND: [Array], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { 'constructor-super': 'off', 'getter-return': 'off', 'no-const-assign': 'off', 'no-dupe-args': 'off', 'no-dupe-class-members': 'off', 'no-dupe-keys': 'off', 'no-func-assign': 'off', 'no-import-assign': 'off', 'no-new-symbol': 'off', 'no-obj-calls': 'off', 'no-redeclare': 'off', 'no-setter-return': 'off', 'no-this-before-super': 'off', 'no-undef': 'off', 'no-unreachable': 'off', 'no-unsafe-negation': 'off', 'no-var': 'error', 'prefer-const': 'error', 'prefer-rest-params': 'error', 'prefer-spread': 'error', 'valid-typeof': 'off' }, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json#overrides[0] » plugin:@nrwl/nx/typescript » plugin:@typescript-eslint/recommended » ./configs/base', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: { error: null, filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js', id: '@typescript-eslint/parser', importerName: '--config » ../../../../../.eslintrc.json#overrides[0] » plugin:@nrwl/nx/typescript » plugin:@typescript-eslint/recommended » ./configs/base', importerPath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js' }, parserOptions: { sourceType: 'module' }, plugins: { '@typescript-eslint': [Object] }, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json#overrides[0] » plugin:@nrwl/nx/typescript » plugin:@typescript-eslint/recommended » ./configs/eslint-recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json#overrides[0] » plugin:@nrwl/nx/typescript » plugin:@typescript-eslint/recommended » ./configs/eslint-recommended#overrides[0]', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js', criteria: { AND: [Array], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { 'constructor-super': 'off', 'getter-return': 'off', 'no-const-assign': 'off', 'no-dupe-args': 'off', 'no-dupe-class-members': 'off', 'no-dupe-keys': 'off', 'no-func-assign': 'off', 'no-import-assign': 'off', 'no-new-symbol': 'off', 'no-obj-calls': 'off', 'no-redeclare': 'off', 'no-setter-return': 'off', 'no-this-before-super': 'off', 'no-undef': 'off', 'no-unreachable': 'off', 'no-unsafe-negation': 'off', 'no-var': 'error', 'prefer-const': 'error', 'prefer-rest-params': 'error', 'prefer-spread': 'error', 'valid-typeof': 'off' }, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json#overrides[0] » plugin:@nrwl/nx/typescript » plugin:@typescript-eslint/recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { '@typescript-eslint/adjacent-overload-signatures': 'error', '@typescript-eslint/ban-ts-comment': 'error', '@typescript-eslint/ban-types': 'error', '@typescript-eslint/explicit-module-boundary-types': 'warn', 'no-array-constructor': 'off', '@typescript-eslint/no-array-constructor': 'error', 'no-empty-function': 'off', '@typescript-eslint/no-empty-function': 'error', '@typescript-eslint/no-empty-interface': 'error', '@typescript-eslint/no-explicit-any': 'warn', '@typescript-eslint/no-extra-non-null-assertion': 'error', 'no-extra-semi': 'off', '@typescript-eslint/no-extra-semi': 'error', '@typescript-eslint/no-inferrable-types': 'error', '@typescript-eslint/no-misused-new': 'error', '@typescript-eslint/no-namespace': 'error', '@typescript-eslint/no-non-null-asserted-optional-chain': 'error', '@typescript-eslint/no-non-null-assertion': 'warn', '@typescript-eslint/no-this-alias': 'error', 'no-unused-vars': 'off', '@typescript-eslint/no-unused-vars': 'warn', '@typescript-eslint/no-var-requires': 'error', '@typescript-eslint/prefer-as-const': 'error', '@typescript-eslint/prefer-namespace-keyword': 'error', '@typescript-eslint/triple-slash-reference': 'error' }, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json#overrides[0] » plugin:@nrwl/nx/typescript » eslint-config-prettier', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { curly: 0, 'lines-around-comment': 0, 'max-len': 0, 'no-confusing-arrow': 0, 'no-mixed-operators': 0, 'no-tabs': 0, 'no-unexpected-multiline': 0, quotes: 0, 'array-bracket-newline': 'off', 'array-bracket-spacing': 'off', 'array-element-newline': 'off', 'arrow-parens': 'off', 'arrow-spacing': 'off', 'block-spacing': 'off', 'brace-style': 'off', 'comma-dangle': 'off', 'comma-spacing': 'off', 'comma-style': 'off', 'computed-property-spacing': 'off', 'dot-location': 'off', 'eol-last': 'off', 'func-call-spacing': 'off', 'function-call-argument-newline': 'off', 'function-paren-newline': 'off', 'generator-star': 'off', 'generator-star-spacing': 'off', 'implicit-arrow-linebreak': 'off', indent: 'off', 'jsx-quotes': 'off', 'key-spacing': 'off', 'keyword-spacing': 'off', 'linebreak-style': 'off', 'multiline-ternary': 'off', 'newline-per-chained-call': 'off', 'new-parens': 'off', 'no-arrow-condition': 'off', 'no-comma-dangle': 'off', 'no-extra-parens': 'off', 'no-extra-semi': 'off', 'no-floating-decimal': 'off', 'no-mixed-spaces-and-tabs': 'off', 'no-multi-spaces': 'off', 'no-multiple-empty-lines': 'off', 'no-reserved-keys': 'off', 'no-space-before-semi': 'off', 'no-trailing-spaces': 'off', 'no-whitespace-before-property': 'off', 'no-wrap-func': 'off', 'nonblock-statement-body-position': 'off', 'object-curly-newline': 'off', 'object-curly-spacing': 'off', 'object-property-newline': 'off', 'one-var-declaration-per-line': 'off', 'operator-linebreak': 'off', 'padded-blocks': 'off', 'quote-props': 'off', 'rest-spread-spacing': 'off', semi: 'off', 'semi-spacing': 'off', 'semi-style': 'off', 'space-after-function-name': 'off', 'space-after-keywords': 'off', 'space-before-blocks': 'off', 'space-before-function-paren': 'off', 'space-before-function-parentheses': 'off', 'space-before-keywords': 'off', 'space-in-brackets': 'off', 'space-in-parens': 'off', 'space-infix-ops': 'off', 'space-return-throw-case': 'off', 'space-unary-ops': 'off', 'space-unary-word-ops': 'off', 'switch-colon-spacing': 'off', 'template-curly-spacing': 'off', 'template-tag-spacing': 'off', 'unicode-bom': 'off', 'wrap-iife': 'off', 'wrap-regex': 'off', 'yield-star-spacing': 'off', 'indent-legacy': 'off', 'no-spaced-func': 'off' }, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json#overrides[0] » plugin:@nrwl/nx/typescript » eslint-config-prettier/@typescript-eslint', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/@typescript-eslint.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { '@typescript-eslint/quotes': 0, '@typescript-eslint/brace-style': 'off', '@typescript-eslint/comma-dangle': 'off', '@typescript-eslint/comma-spacing': 'off', '@typescript-eslint/func-call-spacing': 'off', '@typescript-eslint/indent': 'off', '@typescript-eslint/keyword-spacing': 'off', '@typescript-eslint/member-delimiter-style': 'off', '@typescript-eslint/no-extra-parens': 'off', '@typescript-eslint/no-extra-semi': 'off', '@typescript-eslint/object-curly-spacing': 'off', '@typescript-eslint/semi': 'off', '@typescript-eslint/space-before-function-paren': 'off', '@typescript-eslint/space-infix-ops': 'off', '@typescript-eslint/type-annotation-spacing': 'off' }, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json#overrides[0] » plugin:@nrwl/nx/typescript', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: { error: null, filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js', id: '@typescript-eslint/parser', importerName: '--config » ../../../../../.eslintrc.json#overrides[0] » plugin:@nrwl/nx/typescript', importerPath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js' }, parserOptions: { ecmaVersion: 2020, sourceType: 'module' }, plugins: { '@typescript-eslint': [Object] }, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { '@typescript-eslint/explicit-member-accessibility': 'off', '@typescript-eslint/explicit-module-boundary-types': 'off', '@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/no-parameter-properties': 'off' }, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json#overrides[0] » plugin:@nrwl/nx/typescript#overrides[0]', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js', criteria: { AND: [Array], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { '@typescript-eslint/no-unused-vars': 'off' }, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json#overrides[0]', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { '@typescript-eslint/no-explicit-any': 'off', '@typescript-eslint/no-unused-vars': [Array], '@typescript-eslint/explicit-member-accessibility': 'off', '@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/no-parameter-properties': 'off', '@typescript-eslint/no-namespace': 'off', '@typescript-eslint/explicit-module-boundary-types': 'off', '@nrwl/nx/enforce-module-boundaries': [Array] }, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json#overrides[1] » plugin:@nrwl/nx/javascript » eslint:recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint/conf/eslint-recommended.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { 'constructor-super': 'error', 'for-direction': 'error', 'getter-return': 'error', 'no-async-promise-executor': 'error', 'no-case-declarations': 'error', 'no-class-assign': 'error', 'no-compare-neg-zero': 'error', 'no-cond-assign': 'error', 'no-const-assign': 'error', 'no-constant-condition': 'error', 'no-control-regex': 'error', 'no-debugger': 'error', 'no-delete-var': 'error', 'no-dupe-args': 'error', 'no-dupe-class-members': 'error', 'no-dupe-else-if': 'error', 'no-dupe-keys': 'error', 'no-duplicate-case': 'error', 'no-empty': 'error', 'no-empty-character-class': 'error', 'no-empty-pattern': 'error', 'no-ex-assign': 'error', 'no-extra-boolean-cast': 'error', 'no-extra-semi': 'error', 'no-fallthrough': 'error', 'no-func-assign': 'error', 'no-global-assign': 'error', 'no-import-assign': 'error', 'no-inner-declarations': 'error', 'no-invalid-regexp': 'error', 'no-irregular-whitespace': 'error', 'no-misleading-character-class': 'error', 'no-mixed-spaces-and-tabs': 'error', 'no-new-symbol': 'error', 'no-obj-calls': 'error', 'no-octal': 'error', 'no-prototype-builtins': 'error', 'no-redeclare': 'error', 'no-regex-spaces': 'error', 'no-self-assign': 'error', 'no-setter-return': 'error', 'no-shadow-restricted-names': 'error', 'no-sparse-arrays': 'error', 'no-this-before-super': 'error', 'no-undef': 'error', 'no-unexpected-multiline': 'error', 'no-unreachable': 'error', 'no-unsafe-finally': 'error', 'no-unsafe-negation': 'error', 'no-unused-labels': 'error', 'no-unused-vars': 'error', 'no-useless-catch': 'error', 'no-useless-escape': 'error', 'no-with': 'error', 'require-yield': 'error', 'use-isnan': 'error', 'valid-typeof': 'error' }, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json#overrides[1] » plugin:@nrwl/nx/javascript » plugin:@typescript-eslint/eslint-recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json#overrides[1] » plugin:@nrwl/nx/javascript » plugin:@typescript-eslint/eslint-recommended#overrides[0]', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js', criteria: { AND: [Array], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { 'constructor-super': 'off', 'getter-return': 'off', 'no-const-assign': 'off', 'no-dupe-args': 'off', 'no-dupe-class-members': 'off', 'no-dupe-keys': 'off', 'no-func-assign': 'off', 'no-import-assign': 'off', 'no-new-symbol': 'off', 'no-obj-calls': 'off', 'no-redeclare': 'off', 'no-setter-return': 'off', 'no-this-before-super': 'off', 'no-undef': 'off', 'no-unreachable': 'off', 'no-unsafe-negation': 'off', 'no-var': 'error', 'prefer-const': 'error', 'prefer-rest-params': 'error', 'prefer-spread': 'error', 'valid-typeof': 'off' }, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json#overrides[1] » plugin:@nrwl/nx/javascript » plugin:@typescript-eslint/recommended » ./configs/base', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: { error: null, filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js', id: '@typescript-eslint/parser', importerName: '--config » ../../../../../.eslintrc.json#overrides[1] » plugin:@nrwl/nx/javascript » plugin:@typescript-eslint/recommended » ./configs/base', importerPath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js' }, parserOptions: { sourceType: 'module' }, plugins: { '@typescript-eslint': [Object] }, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json#overrides[1] » plugin:@nrwl/nx/javascript » plugin:@typescript-eslint/recommended » ./configs/eslint-recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json#overrides[1] » plugin:@nrwl/nx/javascript » plugin:@typescript-eslint/recommended » ./configs/eslint-recommended#overrides[0]', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js', criteria: { AND: [Array], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { 'constructor-super': 'off', 'getter-return': 'off', 'no-const-assign': 'off', 'no-dupe-args': 'off', 'no-dupe-class-members': 'off', 'no-dupe-keys': 'off', 'no-func-assign': 'off', 'no-import-assign': 'off', 'no-new-symbol': 'off', 'no-obj-calls': 'off', 'no-redeclare': 'off', 'no-setter-return': 'off', 'no-this-before-super': 'off', 'no-undef': 'off', 'no-unreachable': 'off', 'no-unsafe-negation': 'off', 'no-var': 'error', 'prefer-const': 'error', 'prefer-rest-params': 'error', 'prefer-spread': 'error', 'valid-typeof': 'off' }, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json#overrides[1] » plugin:@nrwl/nx/javascript » plugin:@typescript-eslint/recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/eslint-plugin/dist/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { '@typescript-eslint/adjacent-overload-signatures': 'error', '@typescript-eslint/ban-ts-comment': 'error', '@typescript-eslint/ban-types': 'error', '@typescript-eslint/explicit-module-boundary-types': 'warn', 'no-array-constructor': 'off', '@typescript-eslint/no-array-constructor': 'error', 'no-empty-function': 'off', '@typescript-eslint/no-empty-function': 'error', '@typescript-eslint/no-empty-interface': 'error', '@typescript-eslint/no-explicit-any': 'warn', '@typescript-eslint/no-extra-non-null-assertion': 'error', 'no-extra-semi': 'off', '@typescript-eslint/no-extra-semi': 'error', '@typescript-eslint/no-inferrable-types': 'error', '@typescript-eslint/no-misused-new': 'error', '@typescript-eslint/no-namespace': 'error', '@typescript-eslint/no-non-null-asserted-optional-chain': 'error', '@typescript-eslint/no-non-null-assertion': 'warn', '@typescript-eslint/no-this-alias': 'error', 'no-unused-vars': 'off', '@typescript-eslint/no-unused-vars': 'warn', '@typescript-eslint/no-var-requires': 'error', '@typescript-eslint/prefer-as-const': 'error', '@typescript-eslint/prefer-namespace-keyword': 'error', '@typescript-eslint/triple-slash-reference': 'error' }, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json#overrides[1] » plugin:@nrwl/nx/javascript » eslint-config-prettier', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { curly: 0, 'lines-around-comment': 0, 'max-len': 0, 'no-confusing-arrow': 0, 'no-mixed-operators': 0, 'no-tabs': 0, 'no-unexpected-multiline': 0, quotes: 0, 'array-bracket-newline': 'off', 'array-bracket-spacing': 'off', 'array-element-newline': 'off', 'arrow-parens': 'off', 'arrow-spacing': 'off', 'block-spacing': 'off', 'brace-style': 'off', 'comma-dangle': 'off', 'comma-spacing': 'off', 'comma-style': 'off', 'computed-property-spacing': 'off', 'dot-location': 'off', 'eol-last': 'off', 'func-call-spacing': 'off', 'function-call-argument-newline': 'off', 'function-paren-newline': 'off', 'generator-star': 'off', 'generator-star-spacing': 'off', 'implicit-arrow-linebreak': 'off', indent: 'off', 'jsx-quotes': 'off', 'key-spacing': 'off', 'keyword-spacing': 'off', 'linebreak-style': 'off', 'multiline-ternary': 'off', 'newline-per-chained-call': 'off', 'new-parens': 'off', 'no-arrow-condition': 'off', 'no-comma-dangle': 'off', 'no-extra-parens': 'off', 'no-extra-semi': 'off', 'no-floating-decimal': 'off', 'no-mixed-spaces-and-tabs': 'off', 'no-multi-spaces': 'off', 'no-multiple-empty-lines': 'off', 'no-reserved-keys': 'off', 'no-space-before-semi': 'off', 'no-trailing-spaces': 'off', 'no-whitespace-before-property': 'off', 'no-wrap-func': 'off', 'nonblock-statement-body-position': 'off', 'object-curly-newline': 'off', 'object-curly-spacing': 'off', 'object-property-newline': 'off', 'one-var-declaration-per-line': 'off', 'operator-linebreak': 'off', 'padded-blocks': 'off', 'quote-props': 'off', 'rest-spread-spacing': 'off', semi: 'off', 'semi-spacing': 'off', 'semi-style': 'off', 'space-after-function-name': 'off', 'space-after-keywords': 'off', 'space-before-blocks': 'off', 'space-before-function-paren': 'off', 'space-before-function-parentheses': 'off', 'space-before-keywords': 'off', 'space-in-brackets': 'off', 'space-in-parens': 'off', 'space-infix-ops': 'off', 'space-return-throw-case': 'off', 'space-unary-ops': 'off', 'space-unary-word-ops': 'off', 'switch-colon-spacing': 'off', 'template-curly-spacing': 'off', 'template-tag-spacing': 'off', 'unicode-bom': 'off', 'wrap-iife': 'off', 'wrap-regex': 'off', 'yield-star-spacing': 'off', 'indent-legacy': 'off', 'no-spaced-func': 'off' }, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json#overrides[1] » plugin:@nrwl/nx/javascript » eslint-config-prettier/@typescript-eslint', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/eslint-config-prettier/@typescript-eslint.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { '@typescript-eslint/quotes': 0, '@typescript-eslint/brace-style': 'off', '@typescript-eslint/comma-dangle': 'off', '@typescript-eslint/comma-spacing': 'off', '@typescript-eslint/func-call-spacing': 'off', '@typescript-eslint/indent': 'off', '@typescript-eslint/keyword-spacing': 'off', '@typescript-eslint/member-delimiter-style': 'off', '@typescript-eslint/no-extra-parens': 'off', '@typescript-eslint/no-extra-semi': 'off', '@typescript-eslint/object-curly-spacing': 'off', '@typescript-eslint/semi': 'off', '@typescript-eslint/space-before-function-paren': 'off', '@typescript-eslint/space-infix-ops': 'off', '@typescript-eslint/type-annotation-spacing': 'off' }, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json#overrides[1] » plugin:@nrwl/nx/javascript', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: { error: null, filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js', id: '@typescript-eslint/parser', importerName: '--config » ../../../../../.eslintrc.json#overrides[1] » plugin:@nrwl/nx/javascript', importerPath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js' }, parserOptions: { ecmaVersion: 2020, sourceType: 'module' }, plugins: { '@typescript-eslint': [Object] }, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { '@typescript-eslint/explicit-member-accessibility': 'off', '@typescript-eslint/explicit-module-boundary-types': 'off', '@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/no-parameter-properties': 'off' }, settings: undefined }, { type: 'config', name: '--config » ../../../../../.eslintrc.json#overrides[1]', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/.eslintrc.json', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: {}, settings: undefined }, { type: 'config', name: '--config', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json', criteria: null, env: undefined, globals: undefined, ignorePattern: IgnorePattern { patterns: [Array], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', loose: false }, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: '--config#overrides[0] » plugin:@nrwl/nx/angular » plugin:@angular-eslint/recommended » ./configs/base.json', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/configs/base.json', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: { error: null, filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js', id: '@typescript-eslint/parser', importerName: '--config#overrides[0] » plugin:@nrwl/nx/angular » plugin:@angular-eslint/recommended » ./configs/base.json', importerPath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/configs/base.json' }, parserOptions: { ecmaVersion: 2020, sourceType: 'module', project: './tsconfig.json' }, plugins: { '@typescript-eslint': [Object], '@angular-eslint': [Object] }, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: '--config#overrides[0] » plugin:@nrwl/nx/angular » plugin:@angular-eslint/recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin/dist/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { 'no-restricted-imports': [Array], '@typescript-eslint/member-ordering': [Array], 'no-restricted-syntax': [Array], '@typescript-eslint/no-inferrable-types': [Array], '@typescript-eslint/no-non-null-assertion': 'error', 'no-fallthrough': 'error', '@angular-eslint/component-class-suffix': 'error', '@angular-eslint/contextual-lifecycle': 'error', '@angular-eslint/directive-class-suffix': 'error', '@angular-eslint/no-conflicting-lifecycle': 'error', '@angular-eslint/no-empty-lifecycle-method': 'error', '@angular-eslint/no-host-metadata-property': 'error', '@angular-eslint/no-input-rename': 'error', '@angular-eslint/no-inputs-metadata-property': 'error', '@angular-eslint/no-output-native': 'error', '@angular-eslint/no-output-on-prefix': 'error', '@angular-eslint/no-output-rename': 'error', '@angular-eslint/no-outputs-metadata-property': 'error', '@angular-eslint/use-lifecycle-interface': 'warn', '@angular-eslint/use-pipe-transform-interface': 'error' }, settings: undefined }, { type: 'config', name: '--config#overrides[0] » plugin:@nrwl/nx/angular', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: { '@angular-eslint': [Object] }, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: {}, settings: undefined }, { type: 'config', name: '--config#overrides[0] » plugin:@angular-eslint/template/process-inline-templates', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: { error: null, filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@typescript-eslint/parser/dist/index.js', id: '@typescript-eslint/parser', importerName: '--config#overrides[0] » plugin:@angular-eslint/template/process-inline-templates', importerPath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js' }, parserOptions: { ecmaVersion: 2020, sourceType: 'module' }, plugins: { '@angular-eslint/template': [Object] }, processor: '@angular-eslint/template/extract-inline-html', reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: '--config#overrides[0]', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: { project: [Array] }, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { '@angular-eslint/directive-selector': [Array], '@angular-eslint/component-selector': [Array] }, settings: undefined }, { type: 'config', name: '--config#overrides[1] » plugin:@nrwl/nx/angular-template » plugin:@angular-eslint/template/recommended » ./configs/base.json', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/configs/base.json', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: { error: null, filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/template-parser/dist/index.js', id: '@angular-eslint/template-parser', importerName: '--config#overrides[1] » plugin:@nrwl/nx/angular-template » plugin:@angular-eslint/template/recommended » ./configs/base.json', importerPath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/configs/base.json' }, parserOptions: undefined, plugins: { '@angular-eslint/template': [Object] }, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined }, { type: 'config', name: '--config#overrides[1] » plugin:@nrwl/nx/angular-template » plugin:@angular-eslint/template/recommended', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@angular-eslint/eslint-plugin-template/dist/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: { '@angular-eslint/template/banana-in-box': 'error', '@angular-eslint/template/no-negated-async': 'error' }, settings: undefined }, { type: 'config', name: '--config#overrides[1] » plugin:@nrwl/nx/angular-template', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/node_modules/@nrwl/eslint-plugin-nx/src/index.js', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: { '@angular-eslint/template': [Object] }, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: {}, settings: undefined }, { type: 'config', name: '--config#overrides[1]', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/.eslintrc.json', criteria: { includes: [Array], excludes: null, basePath: '/Users/fernandobaba/Repositories/nib/nibtravel' }, env: undefined, globals: undefined, ignorePattern: undefined, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: {}, settings: undefined }, { type: 'ignore', name: '.eslintignore', filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/.eslintignore', criteria: null, env: undefined, globals: undefined, ignorePattern: IgnorePattern { patterns: [Array], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', loose: true }, noInlineConfig: undefined, parser: undefined, parserOptions: undefined, plugins: undefined, processor: undefined, reportUnusedDisableDirectives: undefined, root: undefined, rules: undefined, settings: undefined } ] on /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel +91ms
  eslint:file-enumerator Didn't match: .eslintrc.json +125ms
  eslint:file-enumerator Didn't match: README.md +2ms
  eslintrc:ignore-pattern Create with: [ IgnorePattern { patterns: [ '/**/node_modules/*' ], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', loose: false }, IgnorePattern { patterns: [ '**/*' ], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel', loose: false }, IgnorePattern { patterns: [ '!**/*' ], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel', loose: false }, IgnorePattern { patterns: [ '**/*' ], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', loose: false }, IgnorePattern { patterns: [ '!**/*' ], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', loose: false }, IgnorePattern { patterns: [ '/libs/shared/ui-styles/**/*.*', '/libs/third-party/**/*.*', 'node_modules', '**/jest.config.js', '**/*.stories.*', '**/*.html', '**/*.scss', '**/*.json', '**/*.pdf', '**/*.otf', '**/*.ttf', '**/*.svg', '**/*.png', '**/*.md', '**/*.ico', '**/*.txt' ], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', loose: true } ] +129ms
  eslintrc:ignore-pattern   processed: { basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', patterns: [ '/**/node_modules/*', '/libs/shared/ui/components/panel/**/**/*', '!/libs/shared/ui/components/panel/**/**/*', '**/*', '!**/*', '/libs/shared/ui-styles/**/*.*', '/libs/third-party/**/*.*', 'node_modules', '**/jest.config.js', '**/*.stories.*', '**/*.html', '**/*.scss', '**/*.json', '**/*.pdf', '**/*.otf', '**/*.ttf', '**/*.svg', '**/*.png', '**/*.md', '**/*.ico', '**/*.txt' ] } +1ms
  eslintrc:ignore-pattern Check {
  filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/jest.config.js',
  dot: false,
  relativePath: 'libs/shared/ui/components/panel/jest.config.js',
  result: true
} +2ms
  eslint:file-enumerator Yield: jest.config.js but ignored +4ms
  eslintrc:cascading-config-array-factory Load config files for /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel. +26ms
  eslintrc:cascading-config-array-factory Cache hit: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel. +0ms
  eslintrc:ignore-pattern Create with: [ IgnorePattern { patterns: [ '/**/node_modules/*' ], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', loose: false }, IgnorePattern { patterns: [ '**/*' ], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel', loose: false }, IgnorePattern { patterns: [ '!**/*' ], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel', loose: false }, IgnorePattern { patterns: [ '**/*' ], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', loose: false }, IgnorePattern { patterns: [ '!**/*' ], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', loose: false }, IgnorePattern { patterns: [ '/libs/shared/ui-styles/**/*.*', '/libs/third-party/**/*.*', 'node_modules', '**/jest.config.js', '**/*.stories.*', '**/*.html', '**/*.scss', '**/*.json', '**/*.pdf', '**/*.otf', '**/*.ttf', '**/*.svg', '**/*.png', '**/*.md', '**/*.ico', '**/*.txt' ], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', loose: true } ] +1ms
  eslintrc:ignore-pattern   processed: { basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', patterns: [ '/**/node_modules/*', '/libs/shared/ui/components/panel/**/**/*', '!/libs/shared/ui/components/panel/**/**/*', '**/*', '!**/*', '/libs/shared/ui-styles/**/*.*', '/libs/third-party/**/*.*', 'node_modules', '**/jest.config.js', '**/*.stories.*', '**/*.html', '**/*.scss', '**/*.json', '**/*.pdf', '**/*.otf', '**/*.ttf', '**/*.svg', '**/*.png', '**/*.md', '**/*.ico', '**/*.txt' ] } +0ms
  eslintrc:ignore-pattern Check {
  filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/',
  dot: false,
  relativePath: 'libs/shared/ui/components/panel/src/',
  result: false
} +0ms
  eslint:file-enumerator Enter the directory: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src +1ms
  eslintrc:cascading-config-array-factory Load config files for /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src. +1ms
  eslintrc:cascading-config-array-factory No cache found: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src. +0ms
  eslintrc:config-array-factory Config file not found on /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src +119ms
  eslintrc:cascading-config-array-factory Cache hit: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel. +1ms
  eslintrc:ignore-pattern Create with: [ IgnorePattern { patterns: [ '/**/node_modules/*' ], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', loose: false }, IgnorePattern { patterns: [ '**/*' ], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel', loose: false }, IgnorePattern { patterns: [ '!**/*' ], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel', loose: false }, IgnorePattern { patterns: [ '**/*' ], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', loose: false }, IgnorePattern { patterns: [ '!**/*' ], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', loose: false }, IgnorePattern { patterns: [ '/libs/shared/ui-styles/**/*.*', '/libs/third-party/**/*.*', 'node_modules', '**/jest.config.js', '**/*.stories.*', '**/*.html', '**/*.scss', '**/*.json', '**/*.pdf', '**/*.otf', '**/*.ttf', '**/*.svg', '**/*.png', '**/*.md', '**/*.ico', '**/*.txt' ], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', loose: true } ] +1ms
  eslintrc:ignore-pattern   processed: { basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', patterns: [ '/**/node_modules/*', '/libs/shared/ui/components/panel/**/**/*', '!/libs/shared/ui/components/panel/**/**/*', '**/*', '!**/*', '/libs/shared/ui-styles/**/*.*', '/libs/third-party/**/*.*', 'node_modules', '**/jest.config.js', '**/*.stories.*', '**/*.html', '**/*.scss', '**/*.json', '**/*.pdf', '**/*.otf', '**/*.ttf', '**/*.svg', '**/*.png', '**/*.md', '**/*.ico', '**/*.txt' ] } +1ms
  eslintrc:ignore-pattern Check {
  filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/index.ts',
  dot: false,
  relativePath: 'libs/shared/ui/components/panel/src/index.ts',
  result: false
} +0ms
  eslint:file-enumerator Yield: index.ts +2ms
  eslintrc:cascading-config-array-factory Load config files for /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src. +1ms
  eslintrc:cascading-config-array-factory Cache hit: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src. +0ms
  eslint:cli-engine Lint /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/index.ts +0ms
  eslint:linter Linting code for /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/index.ts (pass 1) +0ms
  eslint:linter Verify +0ms
  eslint:linter With ConfigArray: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/index.ts +0ms
  eslint:linter Apply the processor: '@angular-eslint/template/extract-inline-html' +0ms
  eslint:linter A code block was found: '(unnamed)' +1ms
  eslint:linter Generating fixed text for /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/index.ts (pass 1) +2s
  eslint:source-code-fixer Applying fixes +0ms
  eslint:source-code-fixer shouldFix parameter was false, not attempting fixes +0ms
  eslintrc:ignore-pattern Check {
  filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/',
  dot: false,
  relativePath: 'libs/shared/ui/components/panel/src/lib/',
  result: false
} +2s
  eslint:file-enumerator Enter the directory: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib +2s
  eslintrc:cascading-config-array-factory Load config files for /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib. +2s
  eslintrc:cascading-config-array-factory No cache found: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib. +0ms
  eslintrc:config-array-factory Config file not found on /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib +2s
  eslintrc:cascading-config-array-factory Cache hit: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src. +0ms
  eslintrc:ignore-pattern Check {
  filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/models/',
  dot: false,
  relativePath: 'libs/shared/ui/components/panel/src/lib/models/',
  result: false
} +1ms
  eslint:file-enumerator Enter the directory: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/models +0ms
  eslintrc:cascading-config-array-factory Load config files for /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/models. +1ms
  eslintrc:cascading-config-array-factory No cache found: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/models. +0ms
  eslintrc:config-array-factory Config file not found on /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/models +1ms
  eslintrc:cascading-config-array-factory Cache hit: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib. +0ms
  eslintrc:ignore-pattern Check {
  filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/models/panel.enum.ts',
  dot: false,
  relativePath: 'libs/shared/ui/components/panel/src/lib/models/panel.enum.ts',
  result: false
} +1ms
  eslint:file-enumerator Yield: panel.enum.ts +1ms
  eslintrc:cascading-config-array-factory Load config files for /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/models. +0ms
  eslintrc:cascading-config-array-factory Cache hit: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/models. +0ms
  eslint:cli-engine Lint /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/models/panel.enum.ts +2s
  eslint:linter Linting code for /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/models/panel.enum.ts (pass 1) +3ms
  eslint:linter Verify +0ms
  eslint:linter With ConfigArray: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/models/panel.enum.ts +0ms
  eslint:linter Apply the processor: '@angular-eslint/template/extract-inline-html' +1ms
  eslint:linter A code block was found: '(unnamed)' +0ms
  eslint:linter Generating fixed text for /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/models/panel.enum.ts (pass 1) +8ms
  eslint:source-code-fixer Applying fixes +12ms
  eslint:source-code-fixer shouldFix parameter was false, not attempting fixes +0ms
  eslint:file-enumerator Leave the directory: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/models +10ms
  eslintrc:ignore-pattern Create with: [ IgnorePattern { patterns: [ '/**/node_modules/*' ], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', loose: false }, IgnorePattern { patterns: [ '**/*' ], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel', loose: false }, IgnorePattern { patterns: [ '!**/*' ], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel', loose: false }, IgnorePattern { patterns: [ '**/*' ], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', loose: false }, IgnorePattern { patterns: [ '!**/*' ], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', loose: false }, IgnorePattern { patterns: [ '/libs/shared/ui-styles/**/*.*', '/libs/third-party/**/*.*', 'node_modules', '**/jest.config.js', '**/*.stories.*', '**/*.html', '**/*.scss', '**/*.json', '**/*.pdf', '**/*.otf', '**/*.ttf', '**/*.svg', '**/*.png', '**/*.md', '**/*.ico', '**/*.txt' ], basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', loose: true } ] +10ms
  eslintrc:ignore-pattern   processed: { basePath: '/Users/fernandobaba/Repositories/nib/nibtravel', patterns: [ '/**/node_modules/*', '/libs/shared/ui/components/panel/**/**/*', '!/libs/shared/ui/components/panel/**/**/*', '**/*', '!**/*', '/libs/shared/ui-styles/**/*.*', '/libs/third-party/**/*.*', 'node_modules', '**/jest.config.js', '**/*.stories.*', '**/*.html', '**/*.scss', '**/*.json', '**/*.pdf', '**/*.otf', '**/*.ttf', '**/*.svg', '**/*.png', '**/*.md', '**/*.ico', '**/*.txt' ] } +1ms
  eslintrc:ignore-pattern Check {
  filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/panel.component.html',
  dot: false,
  relativePath: 'libs/shared/ui/components/panel/src/lib/panel.component.html',
  result: true
} +0ms
  eslint:file-enumerator Yield: panel.component.html but ignored +1ms
  eslintrc:cascading-config-array-factory Load config files for /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib. +11ms
  eslintrc:cascading-config-array-factory Cache hit: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib. +0ms
  eslintrc:ignore-pattern Check {
  filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/panel.component.spec.ts',
  dot: false,
  relativePath: 'libs/shared/ui/components/panel/src/lib/panel.component.spec.ts',
  result: false
} +1ms
  eslint:file-enumerator Yield: panel.component.spec.ts +1ms
  eslintrc:cascading-config-array-factory Load config files for /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib. +1ms
  eslintrc:cascading-config-array-factory Cache hit: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib. +0ms
  eslint:cli-engine Lint /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/panel.component.spec.ts +12ms
  eslint:linter Linting code for /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/panel.component.spec.ts (pass 1) +2ms
  eslint:linter Verify +0ms
  eslint:linter With ConfigArray: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/panel.component.spec.ts +0ms
  eslint:linter Apply the processor: '@angular-eslint/template/extract-inline-html' +0ms
  eslint:linter A code block was found: '(unnamed)' +1ms
  eslint:linter Generating fixed text for /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/panel.component.spec.ts (pass 1) +1s
  eslint:source-code-fixer Applying fixes +1s
  eslint:source-code-fixer shouldFix parameter was false, not attempting fixes +0ms
  eslintrc:ignore-pattern Check {
  filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/panel.component.ts',
  dot: false,
  relativePath: 'libs/shared/ui/components/panel/src/lib/panel.component.ts',
  result: false
} +1s
  eslint:file-enumerator Yield: panel.component.ts +1s
  eslintrc:cascading-config-array-factory Load config files for /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib. +1s
  eslintrc:cascading-config-array-factory Cache hit: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib. +0ms
  eslint:cli-engine Lint /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/panel.component.ts +1s
  eslint:linter Linting code for /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/panel.component.ts (pass 1) +1ms
  eslint:linter Verify +0ms
  eslint:linter With ConfigArray: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/panel.component.ts +0ms
  eslint:linter Apply the processor: '@angular-eslint/template/extract-inline-html' +1ms
  eslint:linter A code block was found: '(unnamed)' +1ms
  eslint:linter Generating fixed text for /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/panel.component.ts (pass 1) +21ms
  eslint:source-code-fixer Applying fixes +24ms
  eslint:source-code-fixer shouldFix parameter was false, not attempting fixes +0ms
  eslintrc:ignore-pattern Check {
  filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/panel.module.ts',
  dot: false,
  relativePath: 'libs/shared/ui/components/panel/src/lib/panel.module.ts',
  result: false
} +24ms
  eslint:file-enumerator Yield: panel.module.ts +24ms
  eslintrc:cascading-config-array-factory Load config files for /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib. +24ms
  eslintrc:cascading-config-array-factory Cache hit: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib. +0ms
  eslint:cli-engine Lint /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/panel.module.ts +24ms
  eslint:linter Linting code for /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/panel.module.ts (pass 1) +1ms
  eslint:linter Verify +0ms
  eslint:linter With ConfigArray: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/panel.module.ts +0ms
  eslint:linter Apply the processor: '@angular-eslint/template/extract-inline-html' +1ms
  eslint:linter A code block was found: '(unnamed)' +0ms
  eslint:linter Generating fixed text for /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/panel.module.ts (pass 1) +9ms
  eslint:source-code-fixer Applying fixes +11ms
  eslint:source-code-fixer shouldFix parameter was false, not attempting fixes +0ms
  eslint:file-enumerator Leave the directory: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib +10ms
  eslintrc:ignore-pattern Check {
  filePath: '/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/test-setup.ts',
  dot: false,
  relativePath: 'libs/shared/ui/components/panel/src/test-setup.ts',
  result: false
} +11ms
  eslint:file-enumerator Yield: test-setup.ts +1ms
  eslintrc:cascading-config-array-factory Load config files for /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src. +11ms
  eslintrc:cascading-config-array-factory Cache hit: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src. +0ms
  eslint:cli-engine Lint /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/test-setup.ts +11ms
  eslint:linter Linting code for /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/test-setup.ts (pass 1) +1ms
  eslint:linter Verify +0ms
  eslint:linter With ConfigArray: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/test-setup.ts +0ms
  eslint:linter Apply the processor: '@angular-eslint/template/extract-inline-html' +0ms
  eslint:linter A code block was found: '(unnamed)' +1ms
  eslint:linter Generating fixed text for /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/test-setup.ts (pass 1) +4ms
  eslint:source-code-fixer Applying fixes +6ms
  eslint:source-code-fixer shouldFix parameter was false, not attempting fixes +0ms
  eslint:file-enumerator Leave the directory: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src +5ms
  eslint:file-enumerator Didn't match: tsconfig.json +1ms
  eslint:file-enumerator Didn't match: tsconfig.lib.json +0ms
  eslint:file-enumerator Didn't match: tsconfig.spec.json +0ms
  eslint:file-enumerator Didn't match: tslint.json +1ms
  eslint:file-enumerator Leave the directory: /Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel +0ms
  eslint:file-enumerator Complete iterating files: ["/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel"] +0ms
  eslint:cli-engine Linting complete in: 3101ms +7ms

/Users/fernandobaba/Repositories/nib/nibtravel/libs/shared/ui/components/panel/src/lib/panel.component.ts
  6:3   warning  'Type' is defined but never used          @typescript-eslint/no-unused-vars
  9:10  warning  'NodeRenderer' is defined but never used  @typescript-eslint/no-unused-vars

✖ 2 problems (0 errors, 2 warnings)

✨  Done in 4.97s.

Versions

package version
@typescript-eslint/parser 4.14.0
TypeScript 4.0.5
ESLint 7.18.0
node 14.15.0
@fbaba-nibtravel fbaba-nibtravel added package: parser Issues related to @typescript-eslint/parser triage Waiting for maintainers to take a look labels Jan 24, 2021
@bradzacher
Copy link
Member

Same as #2941, #2942, #2945, #2947, #2950, #2957

Please use the search

@bradzacher bradzacher added duplicate This issue or pull request already exists and removed triage Waiting for maintainers to take a look labels Jan 24, 2021
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Feb 24, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
duplicate This issue or pull request already exists package: parser Issues related to @typescript-eslint/parser
Projects
None yet
Development

No branches or pull requests

2 participants