aboutsummaryrefslogtreecommitdiffstats
path: root/.eslintrc.cjs
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2022-05-14 23:37:51 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-05-16 00:55:03 +0200
commit4aabd2d0d6c707eaf0867776482a71f003fd7976 (patch)
treee7341888cf834a29a80e19ab84e3ed199a2edecc /.eslintrc.cjs
parenttest: use test instead of it (diff)
downloadsophie-4aabd2d0d6c707eaf0867776482a71f003fd7976.tar.gz
sophie-4aabd2d0d6c707eaf0867776482a71f003fd7976.tar.zst
sophie-4aabd2d0d6c707eaf0867776482a71f003fd7976.zip
test: tests for infrastructure/electron in main
Signed-off-by: Kristóf Marussy <kristof@marussy.com>
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 },