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"
|
|
|
|
],
|
2019-02-21 14:55:16 +01:00
|
|
|
"indent": [
|
|
|
|
"error",
|
|
|
|
2,
|
|
|
|
{
|
|
|
|
"MemberExpression": "off",
|
|
|
|
"SwitchCase": 1
|
2016-10-25 14:18:52 +02:00
|
|
|
}
|
|
|
|
],
|
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"
|
|
|
|
],
|
2022-11-12 09:09:36 +01:00
|
|
|
"prefer-template": "error",
|
2019-02-21 14:55:16 +01:00
|
|
|
"semi": [
|
|
|
|
"error",
|
|
|
|
"never"
|
|
|
|
],
|
2019-02-26 14:13:59 +01:00
|
|
|
"unicorn/explicit-length-check": "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",
|
2021-07-21 14:57:47 +02:00
|
|
|
"unicorn/prefer-array-flat": "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",
|
2019-03-30 16:36:54 +01:00
|
|
|
"unicorn/prevent-abbreviations": "off"
|
2016-10-25 14:18:52 +02:00
|
|
|
}
|
2015-08-19 04:22:46 +02:00
|
|
|
}
|