https://github.com/twbs/bootstrap
Revision 89f88762c52f4c7dfca0fe1de6d41386bb673289 authored by XhmikosR on 30 January 2022, 14:12:24 UTC, committed by GitHub on 30 January 2022, 14:12:24 UTC
* Fix visual tests

They broke in #34509

* load bundle.js in visual tests

Co-authored-by: GeoSot <geo.sotis@gmail.com>
1 parent f77a58b
Raw File
Tip revision: 89f88762c52f4c7dfca0fe1de6d41386bb673289 authored by XhmikosR on 30 January 2022, 14:12:24 UTC
Fix visual tests (#35585)
Tip revision: 89f8876
.eslintrc.json
{
  "root": true,
  "parserOptions": {
    "ecmaVersion": 5,
    "sourceType": "script"
  },
  "extends": [
    "plugin:unicorn/recommended",
    "xo",
    "xo/browser"
  ],
  "rules": {
    "arrow-body-style": "off",
    "capitalized-comments": "off",
    "comma-dangle": [
      "error",
      "never"
    ],
    "indent": [
      "error",
      2,
      {
        "MemberExpression": "off",
        "SwitchCase": 1
      }
    ],
    "multiline-ternary": [
      "error",
      "always-multiline"
    ],
    "no-negated-condition": "off",
    "no-new": "off",
    "no-var": "off",
    "object-curly-spacing": [
      "error",
      "always"
    ],
    "object-shorthand": "off",
    "operator-linebreak": [
      "error",
      "after"
    ],
    "prefer-arrow-callback": "off",
    "prefer-destructuring": "off",
    "semi": [
      "error",
      "never"
    ],
    "strict": "error",
    "unicorn/no-array-for-each": "off",
    "unicorn/no-array-method-this-argument": "off",
    "unicorn/no-for-loop": "off",
    "unicorn/no-null": "off",
    "unicorn/numeric-separators-style": "off",
    "unicorn/prefer-array-flat": "off",
    "unicorn/prefer-dom-node-dataset": "off",
    "unicorn/prefer-module": "off",
    "unicorn/prefer-query-selector": "off",
    "unicorn/prevent-abbreviations": "off"
  }
}
back to top