Sha256: a5d2d5f3272512f38541b12ed7e71bcd132fe0e3fa5b7d6155f711350c8231cd
Contents?: true
Size: 1004 Bytes
Versions: 12
Compression:
Stored size: 1004 Bytes
Contents
module.exports = { "env": { "browser": true, "node": true }, "extends": "eslint:recommended", "parserOptions": { "ecmaVersion": 3 }, "rules": { "no-unused-vars": ["error", { "varsIgnorePattern": "(\$(\$|\$\$|yield|post_args|[a-z])|self)", "argsIgnorePattern": "(\$(\$|\$\$|yield|post_args|[a-z])|self)", }], "no-extra-semi": "off", "no-empty": "off", "no-unreachable": "off", "no-cond-assign": "off", "no-prototype-builtins": "off", "no-constant-condition": ["error", { "checkLoops": false }], "no-useless-escape": "off", "no-fallthrough": ["error", { "commentPattern": "raise|no-break" }], "no-regex-spaces": "off", "no-control-regex": "off", }, "globals": { "ArrayBuffer": "readonly", "DataView": "readonly", "globalThis": "readonly", "Opal": "readonly", "Promise": "readonly", "Proxy": "readonly", "Reflect": "readonly", "Uint8Array": "readonly", "WeakRef": "readonly", } };
Version data entries
12 entries across 12 versions & 1 rubygems