Commit c89ad10d authored by Rajab Natshah's avatar Rajab Natshah
Browse files

Issue #3271780: Switch from deprecated Node Sass to Dart Sass compiler using...

Issue #3271780: Switch from deprecated Node Sass to Dart Sass compiler using Gulp in the Varbase Theme (Bootstrap 5 - SASS)
parent 2bdeb7dc
Loading
Loading
Loading
Loading

.browserslistrc

deleted100755 → 0
+0 −12
Original line number Diff line number Diff line
# https://github.com/browserslist/browserslist#readme

> 1%
chrome >= 35
firefox >= 38
edge >= 12
ie >= 10
ios >= 8
safari >= 8
android 2.3
android >= 4
opera >= 12
 No newline at end of file
+10 −21
Original line number Diff line number Diff line
{
  "extends": [
    "airbnb",
    "plugin:react/recommended",
    "airbnb-base",
    "plugin:prettier/recommended",
    "plugin:yml/recommended"
  ],
  "root": true,
  "env": {
    "browser": true
    "browser": true,
    "es6": true,
    "node": true
  },
  "globals": {
    "Drupal": true,
    "drupalSettings": true,
    "drupalTranslations": true,
    "domready": true,
    "jQuery": true,
    "_": true,
    "matchMedia": true,
    "Cookies": true,
    "Backbone": true,
    "Modernizr": true,
    "loadjs": true,
    "Popper": true,
    "Shepherd": true,
    "Sortable": true,
    "once": true,
    "CKEDITOR": true,
    "CKEditor5": true,
    "tabbable": true
  },
  "settings": {
    "react": {
      "version": "latest"
    }
  },
  "rules": {
    "prettier/prettier": ["error", {
      "trailingComma": "none"
    }],
    "prettier/prettier": "error",
    "consistent-return": ["off"],
    "no-underscore-dangle": ["off"],
    "max-nested-callbacks": ["warn", 3],
@@ -52,12 +47,6 @@
      "requireReturn": false
    }],
    "no-unused-vars": ["warn"],
    "object-shorthand": 0,
    "prefer-arrow-callback": 0,
    "func-names": 0,
    "no-use-before-define": 0,
    "one-var": 0,
    "operator-linebreak": ["error", "after", { "overrides": { "?": "ignore", ":": "ignore" } }],
    "prefer-template": 0
    "operator-linebreak": ["error", "after", { "overrides": { "?": "ignore", ":": "ignore" } }]
  }
}
+0 −0

File mode changed from 100644 to 100755.

+0 −0

File mode changed from 100644 to 100755.

.prettierignore

0 → 100755
+2 −0
Original line number Diff line number Diff line
node_modules
*.yml
 No newline at end of file
Loading