UNPKG

363 BJavaScriptView Raw
1/**
2 * ESLint will not find these Esri modules because they are loaded as externals.
3 * Specifying them as 'core-modules' will prevent ESLint from stumbling over them.
4 */
5module.exports = {
6 "rules": {
7 "import/no-extraneous-dependencies": 0,
8 "import/extensions": 0,
9 },
10 "settings": {
11 "import/core-modules": [
12 "esri/request",
13 ],
14 },
15};