Cristikijian/frontend-project-lvl2

View on GitHub
.eslintrc.yml

Summary

Maintainability
Test Coverage
---

# https://eslint.org/docs/user-guide/configuring#specifying-environments
env:
  node: true
  jest/globals: true

extends:
  - 'airbnb-base'

parserOptions:
  ecmaVersion: latest

plugins:
  - jest

rules:
  no-console: 0
  import/extensions: # FIXME: remove when rule will be adjusted for new nodejs version
    - error
    - ignorePackages
    - js: always
  no-underscore-dangle: [2, { "allow": ["__filename", "__dirname"] }]