aboutsummaryrefslogtreecommitdiffstats
path: root/.eslintrc.cjs
diff options
context:
space:
mode:
Diffstat (limited to '.eslintrc.cjs')
-rw-r--r--.eslintrc.cjs7
1 files changed, 6 insertions, 1 deletions
diff --git a/.eslintrc.cjs b/.eslintrc.cjs
index 289d374..3d944e4 100644
--- a/.eslintrc.cjs
+++ b/.eslintrc.cjs
@@ -85,7 +85,12 @@ module.exports = {
85 files: ['**/stores/**/*.ts'], 85 files: ['**/stores/**/*.ts'],
86 rules: { 86 rules: {
87 // In a mobx-state-tree action, we assign to the properties of `self` to update the store. 87 // In a mobx-state-tree action, we assign to the properties of `self` to update the store.
88 'no-param-reassign': 'off', 88 'no-param-reassign': [
89 'error',
90 {
91 props: false,
92 },
93 ],
89 // mobx-state-tree uses empty interfaces to speed up typechecking. 94 // mobx-state-tree uses empty interfaces to speed up typechecking.
90 '@typescript-eslint/no-empty-interface': 'off', 95 '@typescript-eslint/no-empty-interface': 'off',
91 }, 96 },