mirror of
https://github.com/enso-org/enso.git
synced 2024-11-23 08:08:34 +03:00
0d495ffd97
Resolves #9607 by computing `Number.hash` by converting given number to `Float` first and then computing the hash. Also the conversion from `Float.to Decimal` is exact - done via `new BigDecimal(double)`. There is `Decimal.new` that handles the user-friendly conversion. However as a result `Decimal.from 2.1 != Decimal.new 2.1` - that's the only way to ensure consistency between hash code and conversions.
30 lines
813 B
JSON
30 lines
813 B
JSON
{
|
|
"rust-analyzer.linkedProjects": [
|
|
"./app/gui2/rust-ffi/Cargo.toml"
|
|
],
|
|
"vue.complete.casing.status": false,
|
|
"vue.complete.casing.props": "camel",
|
|
"vue.complete.casing.tags": "pascal",
|
|
"auto-snippets.snippets": [
|
|
{
|
|
"language": "vue",
|
|
"snippet": "Vue single-file component"
|
|
}
|
|
],
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"eslint.experimental.useFlatConfig": true,
|
|
"eslint.useESLintClass": true,
|
|
"[javascript][typescript][typescriptreact][vue]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
},
|
|
"eslint.workingDirectories": [
|
|
"./app/gui2",
|
|
"./app/gui2/ide-desktop"
|
|
],
|
|
"files.watcherExclude": {
|
|
"**/target": true
|
|
},
|
|
"metals.inlayHints.implicitArguments.enable": true,
|
|
"metals.inlayHints.implicitConversions.enable": true
|
|
}
|