blob: 562c45bc9683a981e82541ca9c1fc1621d513639 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
module.exports = {
globals: {
__dirname: true,
},
overrides: [
{
files: ["**/*.js"],
rules: {
"no-unused-vars": "off",
},
},
],
};
|