Mypal/.eslintrc.js

18 lines
330 B
JavaScript
Raw Permalink Normal View History

2019-03-11 03:26:37 -07:00
"use strict";
module.exports = {
// When adding items to this file please check for effects on sub-directories.
"plugins": [
"mozilla"
],
"rules": {
"mozilla/import-globals": "warn",
// No (!foo in bar) or (!object instanceof Class)
"no-unsafe-negation": "error",
},
"env": {
"es6": true
},
};