---
extends:
  - "./js/es6-node.js"
  - plugin:react/recommended
parserOptions:
  # this is not in the Walmart default configuration, for fairly good reason:
  # V8 (and thus Node) does not support ES6 import syntax. Server-side code
  # is transpiled, but this is not reflected in tests.
  sourceType: "module"
rules:
  "strict": ["off", "global"]
  "no-process-exit": ["off"]
  "func-style": ["off"]
  "no-multi-spaces": "off"
env:
  node: true

