@everymatrix/casino-tournaments-controller 0.0.367 → 0.0.369
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc +84 -84
- package/dist/casino-tournaments-controller.js +1 -1
- package/dist/casino-tournaments-controller.js.map +1 -1
- package/documentation.md +170 -170
- package/index.html +29 -29
- package/index.js +1 -1
- package/package.json +2 -2
- package/public/reset.css +47 -47
- package/rollup.config.js +67 -67
- package/src/CasinoTournamentsController.svelte +427 -427
- package/src/i18n.js +27 -27
- package/src/index.ts +4 -4
- package/src/translations.js +101 -101
- package/stories/CasinoTournamentsController.stories.js +13 -13
- package/tsconfig.json +6 -6
package/.eslintrc
CHANGED
|
@@ -1,84 +1,84 @@
|
|
|
1
|
-
{
|
|
2
|
-
"rules": {
|
|
3
|
-
"camelcase": "off",
|
|
4
|
-
"comma-dangle": [ "error", "never" ],
|
|
5
|
-
"no-unused-vars": "off",
|
|
6
|
-
"semi": [ 2, "always" ],
|
|
7
|
-
"keyword-spacing": [ 2, { "before": true, "after": true } ],
|
|
8
|
-
"space-before-blocks": [ 2, "always" ],
|
|
9
|
-
"no-mixed-spaces-and-tabs": [ 2, "smart-tabs" ],
|
|
10
|
-
"no-cond-assign": 0,
|
|
11
|
-
"object-shorthand": [ 2, "always" ],
|
|
12
|
-
"no-const-assign": 2,
|
|
13
|
-
"no-class-assign": 2,
|
|
14
|
-
"no-this-before-super": 2,
|
|
15
|
-
"no-var": 2,
|
|
16
|
-
"no-unreachable": 2,
|
|
17
|
-
"valid-typeof": 2,
|
|
18
|
-
"quote-props": [ 2, "as-needed" ],
|
|
19
|
-
"quotes": ["error", "single", { "avoidEscape": true }],
|
|
20
|
-
"prefer-arrow-callback": 2,
|
|
21
|
-
"prefer-const": [ 2, { "destructuring": "all" } ],
|
|
22
|
-
"arrow-spacing": 2,
|
|
23
|
-
"no-inner-declarations": 0,
|
|
24
|
-
"one-var": "off",
|
|
25
|
-
"require-atomic-updates": "off",
|
|
26
|
-
"no-import-assign": "warn",
|
|
27
|
-
"eol-last": "error",
|
|
28
|
-
"@typescript-eslint/camelcase": "off",
|
|
29
|
-
"@typescript-eslint/no-use-before-define": "off",
|
|
30
|
-
"@typescript-eslint/array-type": [ "error", { "default": "array-simple" } ],
|
|
31
|
-
"@typescript-eslint/explicit-function-return-type": "off",
|
|
32
|
-
"@typescript-eslint/no-explicit-any": "off",
|
|
33
|
-
"@typescript-eslint/explicit-member-accessibility": "off",
|
|
34
|
-
"@typescript-eslint/no-object-literal-type-assertion": "off",
|
|
35
|
-
"@typescript-eslint/no-unused-vars": ["error", { "args": "none" }],
|
|
36
|
-
"@typescript-eslint/prefer-interface": "off",
|
|
37
|
-
"@typescript-eslint/explicit-module-boundary-types": "off",
|
|
38
|
-
"@typescript-eslint/no-empty-function": "off",
|
|
39
|
-
"@typescript-eslint/ban-ts-comment": "off",
|
|
40
|
-
"@typescript-eslint/no-this-alias": "off",
|
|
41
|
-
"@typescript-eslint/no-inferrable-types": "off",
|
|
42
|
-
"@typescript-eslint/ban-types": "off",
|
|
43
|
-
"@typescript-eslint/naming-convention": "off",
|
|
44
|
-
"@typescript-eslint/class-name-casing": "off"
|
|
45
|
-
},
|
|
46
|
-
"globals": {
|
|
47
|
-
"globalThis": false
|
|
48
|
-
},
|
|
49
|
-
"env": {
|
|
50
|
-
"es6": true,
|
|
51
|
-
"browser": true,
|
|
52
|
-
"node": true,
|
|
53
|
-
"mocha": true
|
|
54
|
-
},
|
|
55
|
-
"extends": [
|
|
56
|
-
"eslint:recommended",
|
|
57
|
-
"plugin:import/errors",
|
|
58
|
-
"plugin:import/warnings",
|
|
59
|
-
"plugin:import/typescript",
|
|
60
|
-
"plugin:@typescript-eslint/recommended"
|
|
61
|
-
],
|
|
62
|
-
"parserOptions": {
|
|
63
|
-
"ecmaVersion": 9,
|
|
64
|
-
"sourceType": "module"
|
|
65
|
-
},
|
|
66
|
-
"plugins": ["svelte3"],
|
|
67
|
-
"settings": {
|
|
68
|
-
"svelte3/compiler-options": {
|
|
69
|
-
"customElement": true,
|
|
70
|
-
},
|
|
71
|
-
},
|
|
72
|
-
"overrides": [
|
|
73
|
-
{
|
|
74
|
-
"files": ["*.js"],
|
|
75
|
-
"rules": {
|
|
76
|
-
"@typescript-eslint/no-var-requires": "off"
|
|
77
|
-
}
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
"files": ["*.svelte"],
|
|
81
|
-
"processor": "svelte3/svelte3"
|
|
82
|
-
}
|
|
83
|
-
]
|
|
84
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"rules": {
|
|
3
|
+
"camelcase": "off",
|
|
4
|
+
"comma-dangle": [ "error", "never" ],
|
|
5
|
+
"no-unused-vars": "off",
|
|
6
|
+
"semi": [ 2, "always" ],
|
|
7
|
+
"keyword-spacing": [ 2, { "before": true, "after": true } ],
|
|
8
|
+
"space-before-blocks": [ 2, "always" ],
|
|
9
|
+
"no-mixed-spaces-and-tabs": [ 2, "smart-tabs" ],
|
|
10
|
+
"no-cond-assign": 0,
|
|
11
|
+
"object-shorthand": [ 2, "always" ],
|
|
12
|
+
"no-const-assign": 2,
|
|
13
|
+
"no-class-assign": 2,
|
|
14
|
+
"no-this-before-super": 2,
|
|
15
|
+
"no-var": 2,
|
|
16
|
+
"no-unreachable": 2,
|
|
17
|
+
"valid-typeof": 2,
|
|
18
|
+
"quote-props": [ 2, "as-needed" ],
|
|
19
|
+
"quotes": ["error", "single", { "avoidEscape": true }],
|
|
20
|
+
"prefer-arrow-callback": 2,
|
|
21
|
+
"prefer-const": [ 2, { "destructuring": "all" } ],
|
|
22
|
+
"arrow-spacing": 2,
|
|
23
|
+
"no-inner-declarations": 0,
|
|
24
|
+
"one-var": "off",
|
|
25
|
+
"require-atomic-updates": "off",
|
|
26
|
+
"no-import-assign": "warn",
|
|
27
|
+
"eol-last": "error",
|
|
28
|
+
"@typescript-eslint/camelcase": "off",
|
|
29
|
+
"@typescript-eslint/no-use-before-define": "off",
|
|
30
|
+
"@typescript-eslint/array-type": [ "error", { "default": "array-simple" } ],
|
|
31
|
+
"@typescript-eslint/explicit-function-return-type": "off",
|
|
32
|
+
"@typescript-eslint/no-explicit-any": "off",
|
|
33
|
+
"@typescript-eslint/explicit-member-accessibility": "off",
|
|
34
|
+
"@typescript-eslint/no-object-literal-type-assertion": "off",
|
|
35
|
+
"@typescript-eslint/no-unused-vars": ["error", { "args": "none" }],
|
|
36
|
+
"@typescript-eslint/prefer-interface": "off",
|
|
37
|
+
"@typescript-eslint/explicit-module-boundary-types": "off",
|
|
38
|
+
"@typescript-eslint/no-empty-function": "off",
|
|
39
|
+
"@typescript-eslint/ban-ts-comment": "off",
|
|
40
|
+
"@typescript-eslint/no-this-alias": "off",
|
|
41
|
+
"@typescript-eslint/no-inferrable-types": "off",
|
|
42
|
+
"@typescript-eslint/ban-types": "off",
|
|
43
|
+
"@typescript-eslint/naming-convention": "off",
|
|
44
|
+
"@typescript-eslint/class-name-casing": "off"
|
|
45
|
+
},
|
|
46
|
+
"globals": {
|
|
47
|
+
"globalThis": false
|
|
48
|
+
},
|
|
49
|
+
"env": {
|
|
50
|
+
"es6": true,
|
|
51
|
+
"browser": true,
|
|
52
|
+
"node": true,
|
|
53
|
+
"mocha": true
|
|
54
|
+
},
|
|
55
|
+
"extends": [
|
|
56
|
+
"eslint:recommended",
|
|
57
|
+
"plugin:import/errors",
|
|
58
|
+
"plugin:import/warnings",
|
|
59
|
+
"plugin:import/typescript",
|
|
60
|
+
"plugin:@typescript-eslint/recommended"
|
|
61
|
+
],
|
|
62
|
+
"parserOptions": {
|
|
63
|
+
"ecmaVersion": 9,
|
|
64
|
+
"sourceType": "module"
|
|
65
|
+
},
|
|
66
|
+
"plugins": ["svelte3"],
|
|
67
|
+
"settings": {
|
|
68
|
+
"svelte3/compiler-options": {
|
|
69
|
+
"customElement": true,
|
|
70
|
+
},
|
|
71
|
+
},
|
|
72
|
+
"overrides": [
|
|
73
|
+
{
|
|
74
|
+
"files": ["*.js"],
|
|
75
|
+
"rules": {
|
|
76
|
+
"@typescript-eslint/no-var-requires": "off"
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"files": ["*.svelte"],
|
|
81
|
+
"processor": "svelte3/svelte3"
|
|
82
|
+
}
|
|
83
|
+
]
|
|
84
|
+
}
|