Enigmadie/frontend-project-lvl2

View on GitHub
.eslintrc.yml

Summary

Maintainability
Test Coverage
---

plugins:
# https://github.com/jest-community/eslint-plugin-jest
  - jest
# https://github.com/babel/eslint-plugin-babel
  - babel

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

# https://github.com/babel/babel-eslint
parser:  babel-eslint

extends:
  - 'airbnb-base'
  - 'plugin:jest/recommended'

rules:
  no-console: 0