Skip to content

Commit 02a3e75

Browse files
authored
Update dependencies (AssemblyScript#2128)
1 parent b4dfc44 commit 02a3e75

File tree

5 files changed

+601
-1135
lines changed

5 files changed

+601
-1135
lines changed

.eslintrc.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@ module.exports = {
7070
// Quite common in scenarios where an iteration starts at `current = this`.
7171
"@typescript-eslint/no-this-alias": "off",
7272

73+
// Interferes with tests and 64-bit literals
74+
"@typescript-eslint/no-loss-of-precision": "off",
75+
7376
// Disabled here, but enabled again for JavaScript files.
7477
"no-unused-vars": "off",
7578

@@ -106,7 +109,9 @@ module.exports = {
106109
"args": "none",
107110
"ignoreRestSiblings": false
108111
}
109-
]
112+
],
113+
114+
"@typescript-eslint/no-loss-of-precision": "error",
110115
}
111116
},
112117

0 commit comments

Comments
 (0)