2015-08-19 04:22:46 +02:00
|
|
|
{
|
2016-10-25 14:18:52 +02:00
|
|
|
"root": true,
|
2019-02-21 14:55:16 +01:00
|
|
|
"extends": [
|
|
|
|
"plugin:import/errors",
|
|
|
|
"plugin:import/warnings",
|
|
|
|
"plugin:unicorn/recommended",
|
2021-05-04 14:57:55 +02:00
|
|
|
"xo",
|
2019-02-21 14:55:16 +01:00
|
|
|
"xo/browser"
|
|
|
|
],
|
2016-10-25 14:18:52 +02:00
|
|
|
"rules": {
|
2021-07-21 14:57:47 +02:00
|
|
|
"arrow-body-style": "off",
|
2019-02-21 14:55:16 +01:00
|
|
|
"capitalized-comments": "off",
|
2021-07-21 14:57:47 +02:00
|
|
|
"comma-dangle": [
|
|
|
|
"error",
|
|
|
|
"never"
|
|
|
|
],
|
2023-03-29 19:49:30 +02:00
|
|
|
"import/extensions": [
|
|
|
|
"error",
|
|
|
|
"ignorePackages",
|
|
|
|
{
|
|
|
|
"js": "always"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"import/first": "error",
|
|
|
|
"import/newline-after-import": "error",
|
|
|
|
"import/no-absolute-path": "error",
|
|
|
|
"import/no-amd": "error",
|
|
|
|
"import/no-cycle": [
|
|
|
|
"error",
|
|
|
|
{
|
|
|
|
"ignoreExternal": true
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"import/no-duplicates": "error",
|
|
|
|
"import/no-extraneous-dependencies": "error",
|
|
|
|
"import/no-mutable-exports": "error",
|
|
|
|
"import/no-named-as-default": "error",
|
|
|
|
"import/no-named-as-default-member": "error",
|
|
|
|
"import/no-named-default": "error",
|
|
|
|
"import/no-self-import": "error",
|
|
|
|
"import/no-unassigned-import": [
|
|
|
|
"error"
|
|
|
|
],
|
|
|
|
"import/no-useless-path-segments": "error",
|
|
|
|
"import/order": "error",
|
2019-02-21 14:55:16 +01:00
|
|
|
"indent": [
|
|
|
|
"error",
|
|
|
|
2,
|
|
|
|
{
|
|
|
|
"MemberExpression": "off",
|
|
|
|
"SwitchCase": 1
|
2016-10-25 14:18:52 +02:00
|
|
|
}
|
|
|
|
],
|
2024-02-06 20:46:52 +01:00
|
|
|
"logical-assignment-operators": "off",
|
2019-02-21 14:55:16 +01:00
|
|
|
"max-params": [
|
|
|
|
"warn",
|
|
|
|
5
|
|
|
|
],
|
|
|
|
"multiline-ternary": [
|
|
|
|
"error",
|
|
|
|
"always-multiline"
|
|
|
|
],
|
2020-11-01 15:31:11 +01:00
|
|
|
"new-cap": [
|
|
|
|
"error",
|
|
|
|
{
|
|
|
|
"properties": false
|
|
|
|
}
|
|
|
|
],
|
2019-10-25 11:25:30 +02:00
|
|
|
"no-console": "error",
|
2021-10-08 11:47:55 +02:00
|
|
|
"no-negated-condition": "off",
|
2019-02-21 14:55:16 +01:00
|
|
|
"object-curly-spacing": [
|
|
|
|
"error",
|
|
|
|
"always"
|
|
|
|
],
|
2021-07-21 14:57:47 +02:00
|
|
|
"operator-linebreak": [
|
|
|
|
"error",
|
|
|
|
"after"
|
|
|
|
],
|
2024-02-06 20:46:52 +01:00
|
|
|
"prefer-object-has-own": "off",
|
2022-11-12 09:09:36 +01:00
|
|
|
"prefer-template": "error",
|
2019-02-21 14:55:16 +01:00
|
|
|
"semi": [
|
|
|
|
"error",
|
|
|
|
"never"
|
|
|
|
],
|
2023-03-29 19:49:30 +02:00
|
|
|
"strict": "error",
|
2019-02-26 14:13:59 +01:00
|
|
|
"unicorn/explicit-length-check": "off",
|
2023-03-29 19:49:30 +02:00
|
|
|
"unicorn/filename-case": "off",
|
2024-04-09 16:55:17 +02:00
|
|
|
"unicorn/no-anonymous-default-export": "off",
|
2020-12-29 11:52:32 +01:00
|
|
|
"unicorn/no-array-callback-reference": "off",
|
2021-07-21 14:57:47 +02:00
|
|
|
"unicorn/no-array-method-this-argument": "off",
|
2020-04-28 15:28:46 +02:00
|
|
|
"unicorn/no-null": "off",
|
2022-12-13 17:01:31 +01:00
|
|
|
"unicorn/no-typeof-undefined": "off",
|
2019-02-26 14:13:59 +01:00
|
|
|
"unicorn/no-unused-properties": "error",
|
2023-05-16 15:39:10 +02:00
|
|
|
"unicorn/numeric-separators-style": "off",
|
2021-07-21 14:57:47 +02:00
|
|
|
"unicorn/prefer-array-flat": "off",
|
2023-05-16 15:39:10 +02:00
|
|
|
"unicorn/prefer-at": "off",
|
2020-12-29 11:52:32 +01:00
|
|
|
"unicorn/prefer-dom-node-dataset": "off",
|
2021-05-04 14:27:03 +02:00
|
|
|
"unicorn/prefer-module": "off",
|
2019-03-30 16:36:54 +01:00
|
|
|
"unicorn/prefer-query-selector": "off",
|
2021-01-26 14:53:26 +01:00
|
|
|
"unicorn/prefer-spread": "off",
|
2023-05-16 15:39:10 +02:00
|
|
|
"unicorn/prefer-string-replace-all": "off",
|
2019-03-30 16:36:54 +01:00
|
|
|
"unicorn/prevent-abbreviations": "off"
|
2023-03-29 19:49:30 +02:00
|
|
|
},
|
|
|
|
"overrides": [
|
|
|
|
{
|
|
|
|
"files": [
|
|
|
|
"build/**"
|
|
|
|
],
|
|
|
|
"env": {
|
|
|
|
"browser": false,
|
|
|
|
"node": true
|
|
|
|
},
|
|
|
|
"parserOptions": {
|
2023-08-06 06:37:24 +02:00
|
|
|
"sourceType": "module"
|
2023-03-29 19:49:30 +02:00
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
"no-console": "off",
|
|
|
|
"unicorn/prefer-top-level-await": "off"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"files": [
|
|
|
|
"js/**"
|
|
|
|
],
|
|
|
|
"parserOptions": {
|
|
|
|
"sourceType": "module"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"files": [
|
|
|
|
"js/tests/*.js",
|
|
|
|
"js/tests/integration/rollup*.js"
|
|
|
|
],
|
|
|
|
"env": {
|
|
|
|
"node": true
|
|
|
|
},
|
|
|
|
"parserOptions": {
|
|
|
|
"sourceType": "script"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"files": [
|
|
|
|
"js/tests/unit/**"
|
|
|
|
],
|
|
|
|
"env": {
|
|
|
|
"jasmine": true
|
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
"no-console": "off",
|
|
|
|
"unicorn/consistent-function-scoping": "off",
|
|
|
|
"unicorn/no-useless-undefined": "off",
|
|
|
|
"unicorn/prefer-add-event-listener": "off"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"files": [
|
|
|
|
"js/tests/visual/**"
|
|
|
|
],
|
|
|
|
"plugins": [
|
|
|
|
"html"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"html/html-extensions": [
|
|
|
|
".html"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
"no-console": "off",
|
|
|
|
"no-new": "off",
|
|
|
|
"unicorn/no-array-for-each": "off"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"files": [
|
|
|
|
"scss/tests/**"
|
|
|
|
],
|
|
|
|
"env": {
|
|
|
|
"node": true
|
|
|
|
},
|
|
|
|
"parserOptions": {
|
|
|
|
"sourceType": "script"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"files": [
|
|
|
|
"site/**"
|
|
|
|
],
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"node": false
|
|
|
|
},
|
|
|
|
"parserOptions": {
|
|
|
|
"sourceType": "script",
|
|
|
|
"ecmaVersion": 2019
|
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
"no-new": "off",
|
2023-05-16 15:39:10 +02:00
|
|
|
"unicorn/no-array-for-each": "off"
|
2023-03-29 19:49:30 +02:00
|
|
|
}
|
|
|
|
},
|
2024-03-08 11:43:44 +01:00
|
|
|
{
|
|
|
|
"files": [
|
|
|
|
"site/assets/js/**"
|
|
|
|
],
|
|
|
|
"parserOptions": {
|
|
|
|
"sourceType": "module",
|
|
|
|
"ecmaVersion": 2020
|
|
|
|
}
|
|
|
|
},
|
2023-03-29 19:49:30 +02:00
|
|
|
{
|
|
|
|
"files": [
|
|
|
|
"**/*.md"
|
|
|
|
],
|
|
|
|
"plugins": [
|
|
|
|
"markdown"
|
|
|
|
],
|
|
|
|
"processor": "markdown/markdown"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"files": [
|
2024-03-11 10:57:29 +01:00
|
|
|
"**/*.md/*.js",
|
|
|
|
"**/*.md/*.mjs"
|
2023-03-29 19:49:30 +02:00
|
|
|
],
|
2024-03-11 10:57:29 +01:00
|
|
|
"extends": "plugin:markdown/recommended-legacy",
|
2023-03-29 19:49:30 +02:00
|
|
|
"parserOptions": {
|
|
|
|
"sourceType": "module"
|
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
"unicorn/prefer-node-protocol": "off"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2015-08-19 04:22:46 +02:00
|
|
|
}
|