diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2021-10-27 13:25:00 +0200 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2021-10-27 13:25:00 +0200 |
commit | fc17a7594c638f3b3e6a65976826589ec2f89a07 (patch) | |
tree | 2755343157c8c25e873f033a5e39c32247a03742 /.eslintrc.json | |
parent | 361d241c802ae144493a3f222b03c826d0e74b63 (diff) | |
download | svg.js-fc17a7594c638f3b3e6a65976826589ec2f89a07.tar.gz svg.js-fc17a7594c638f3b3e6a65976826589ec2f89a07.zip |
fixed issues when animating css, updated deps
### Fixed
- fixed `css()` returning camelCased properties even though they were specified in kebap-case
- fixed `ObjectBag` loosing information when calling `valueOf()` (Numbers lost its unit)
Diffstat (limited to '.eslintrc.json')
-rw-r--r-- | .eslintrc.json | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index b6f110d..0eb0613 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -22,63 +22,63 @@ "[everything-else]" ], "groups": { - "constructor": { + "constructor": [{ "name": "constructor", "type": "method", "sort": "alphabetical" - }, - "properties": { + }], + "properties": [{ "type": "property", "sort": "alphabetical" - }, - "getters": { + }], + "getters": [{ "kind": "get", "sort": "alphabetical" - }, - "setters": { + }], + "setters": [{ "kind": "set", "sort": "alphabetical" - }, - "accessor-pairs": { + }], + "accessor-pairs": [{ "accessorPair": true, "sort": "alphabetical" - }, - "static-properties": { + }], + "static-properties": [{ "type": "property", "static": true, "sort": "alphabetical" - }, - "conventional-private-properties": { + }], + "conventional-private-properties": [{ "type": "property", "name": "/_.+/", "sort": "alphabetical" - }, - "arrow-function-properties": { + }], + "arrow-function-properties": [{ "propertyType": "ArrowFunctionExpression", "sort": "alphabetical" - }, - "methods": { + }], + "methods": [{ "type": "method", "sort": "alphabetical" - }, - "static-methods": { + }], + "static-methods": [{ "type": "method", "static": true, "sort": "alphabetical" - }, - "async-methods": { + }], + "async-methods": [{ "type": "method", "async": true, "sort": "alphabetical" - }, - "conventional-private-methods": { + }], + "conventional-private-methods": [{ "type": "method", "name": "/_.+/", "sort": "alphabetical" - }, - "everything-else": { + }], + "everything-else": [{ "sort": "alphabetical" - } + }] } }] } |