mirror of
https://github.com/Instadapp/infinite-proxy.git
synced 2024-07-29 21:47:49 +00:00
25 lines
444 B
JavaScript
25 lines
444 B
JavaScript
|
module.exports = {
|
||
|
env: {
|
||
|
browser: false,
|
||
|
es2021: true,
|
||
|
mocha: true,
|
||
|
node: true,
|
||
|
},
|
||
|
plugins: ["@typescript-eslint"],
|
||
|
extends: [
|
||
|
"standard",
|
||
|
"plugin:prettier/recommended",
|
||
|
"plugin:node/recommended",
|
||
|
],
|
||
|
parser: "@typescript-eslint/parser",
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 12,
|
||
|
},
|
||
|
rules: {
|
||
|
"node/no-unsupported-features/es-syntax": [
|
||
|
"error",
|
||
|
{ ignores: ["modules"] },
|
||
|
],
|
||
|
},
|
||
|
};
|