aboutsummaryrefslogtreecommitdiffstats
path: root/.eslintrc.json
diff options
context:
space:
mode:
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2021-10-27 13:25:00 +0200
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2021-10-27 13:25:00 +0200
commitfc17a7594c638f3b3e6a65976826589ec2f89a07 (patch)
tree2755343157c8c25e873f033a5e39c32247a03742 /.eslintrc.json
parent361d241c802ae144493a3f222b03c826d0e74b63 (diff)
downloadsvg.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.json52
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"
- }
+ }]
}
}]
}