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

Version Path
opal-1.7.3 .eslintrc.js
opal-1.7.2 .eslintrc.js
opal-1.7.1 .eslintrc.js
opal-1.7.0 .eslintrc.js
opal-1.7.0.rc1 .eslintrc.js
opal-1.6.1 .eslintrc.js
opal-1.6.0 .eslintrc.js
opal-1.6.0.rc1 .eslintrc.js
opal-1.6.0.alpha1 .eslintrc.js
opal-1.5.1 .eslintrc.js
opal-1.5.0 .eslintrc.js
opal-1.5.0.rc1 .eslintrc.js