summaryrefslogtreecommitdiff
path: root/.eslintrc.js
blob: a7a88629260ea1a7025ac0d7803738884841747b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"use strict";

module.exports = {
  // When adding items to this file please check for effects on sub-directories.
  "plugins": [
    "mozilla"
  ],
  "rules": {
    "mozilla/import-globals": "warn",
  },
  "env": {
    "es6": true
  },
};