{ "env": { "node": true }, "plugins": [ "security", "sonarjs" ], "extends": [ "eslint:all", "standard", "plugin:security/recommended", "plugin:sonarjs/recommended" ], "parserOptions": { "ecmaVersion": 12 }, "rules": { "array-element-newline": "off", "default-param-last": "off", "function-call-argument-newline": "off", "function-paren-newline": "off", "lines-around-comment": "off", "max-len": "off", "max-lines": "off", "max-lines-per-function": "off", "max-params": "off", "max-statements": "off", "no-invalid-this": "off", "no-undefined": "off", "no-underscore-dangle": "off", "no-magic-numbers": "off", "quote-props": ["error", "as-needed"], "security/detect-non-literal-fs-filename": "off", "security/detect-non-literal-regexp": "off", "security/detect-object-injection": "off", "no-continue": "off", "guard-for-in": "off", "no-plusplus": "off" }, "noInlineConfig": true }