Skip to content

Commit

Permalink
fix: math filters now return number, resolves #110
Browse files Browse the repository at this point in the history
* fix linting
* numbers are no longer fixed:
    i.e. {{0.3 | minus 0.1}} now renders as 0.19999
    Stick to JavaScript number behavior, see: 8.0.0
  • Loading branch information
harttle committed Feb 28, 2019
1 parent 21d674e commit b4acdb4
Show file tree
Hide file tree
Showing 13 changed files with 1,960 additions and 1,981 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Expand Up @@ -18,6 +18,6 @@
"prefer-const": 2,
"no-unused-vars": "off",
"import/export": "off",
"@typescript-eslint/no-unused-vars": ["error", { "vars": "all", "args": "off", "ignoreRestSiblings": false }]
"@typescript-eslint/no-unused-vars": ["error", { "vars": "all", "args": "none", "ignoreRestSiblings": false }]
}
}

0 comments on commit b4acdb4

Please sign in to comment.