2022-03-17 14:45:47 +01:00
|
|
|
{
|
|
|
|
"extends": [
|
2022-07-27 16:43:59 +02:00
|
|
|
"airbnb-base",
|
2022-03-17 14:45:47 +01:00
|
|
|
"plugin:prettier/recommended",
|
|
|
|
"plugin:yml/recommended"
|
|
|
|
],
|
|
|
|
"root": true,
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"es6": true,
|
|
|
|
"node": true
|
|
|
|
},
|
|
|
|
"globals": {
|
|
|
|
"Drupal": true,
|
|
|
|
"drupalSettings": true,
|
|
|
|
"drupalTranslations": true,
|
|
|
|
"jQuery": true,
|
|
|
|
"_": true,
|
|
|
|
"Cookies": true,
|
|
|
|
"Backbone": true,
|
|
|
|
"Modernizr": true,
|
|
|
|
"loadjs": true,
|
|
|
|
"Popper": true,
|
|
|
|
"Shepherd": true,
|
|
|
|
"Sortable": true,
|
|
|
|
"once": true,
|
|
|
|
"CKEDITOR": true,
|
2022-07-27 16:43:59 +02:00
|
|
|
"CKEditor5": true,
|
2022-03-17 14:45:47 +01:00
|
|
|
"tabbable": true
|
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
"prettier/prettier": "error",
|
|
|
|
"consistent-return": ["off"],
|
|
|
|
"no-underscore-dangle": ["off"],
|
|
|
|
"max-nested-callbacks": ["warn", 3],
|
|
|
|
"import/no-mutable-exports": ["warn"],
|
|
|
|
"no-plusplus": ["warn", {
|
|
|
|
"allowForLoopAfterthoughts": true
|
|
|
|
}],
|
|
|
|
"no-param-reassign": ["off"],
|
|
|
|
"no-prototype-builtins": ["off"],
|
|
|
|
"valid-jsdoc": ["warn", {
|
|
|
|
"prefer": {
|
|
|
|
"returns": "return",
|
|
|
|
"property": "prop"
|
|
|
|
},
|
|
|
|
"requireReturn": false
|
|
|
|
}],
|
|
|
|
"no-unused-vars": ["warn"],
|
|
|
|
"operator-linebreak": ["error", "after", { "overrides": { "?": "ignore", ":": "ignore" } }]
|
|
|
|
}
|
|
|
|
}
|