-
Notifications
You must be signed in to change notification settings - Fork 1
/
eslint.config.js
46 lines (42 loc) · 1007 Bytes
/
eslint.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// SPDX-FileCopyrightText: The SWAP-IT Dashboard Contributors
// SPDX-License-Identifier: CC0-1.0
import js from "@eslint/js";
import eslintConfigPrettier from "eslint-config-prettier";
import globals from "globals";
// declare global functions for eslint
const codeVisuGlobalFunctions = {
createCodeVisualization: "readonly",
flipTokensForNodeIds: "readonly",
getElementsFromDotfile: "readonly",
getCy: "readonly"
};
const globalModuleVariables = {
bootstrap: "readonly"
};
export default [
js.configs.recommended,
eslintConfigPrettier,
{
rules: {
semi: "error",
"prefer-const": "error",
curly: "error",
camelcase: "error",
"no-unused-vars": "off"
}
},
{
ignores: ["static/js/bundle.js", "static/js/dotparser_worker.js"]
},
{
languageOptions: {
globals: {
...codeVisuGlobalFunctions,
...globalModuleVariables,
...globals.browser,
...globals.jquery,
...globals.node
}
}
}
];