{ "env": { "mocha": true, "node": true, "commonjs": true, "es2021": true }, "extends": "eslint:recommended", "rules": { "indent": [ "error", 2, { "ArrayExpression": "first", "CallExpression": {"arguments": "first"}, "FunctionDeclaration": {"body": 1, "parameters": "first"}, "MemberExpression": 0, "ObjectExpression": 1 } ], "linebreak-style": [ "error", "unix" ], "no-unused-vars": [ "error", { "vars": "all", "args": "after-used", "ignoreRestSiblings": false } ], "quotes": [ "error", "single" ], "semi": [ "error", "always" ] } }