aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/.eslintrc.cjs
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/frontend/.eslintrc.cjs')
-rw-r--r--subprojects/frontend/.eslintrc.cjs3
1 files changed, 3 insertions, 0 deletions
diff --git a/subprojects/frontend/.eslintrc.cjs b/subprojects/frontend/.eslintrc.cjs
index 8a7b474a..dc03d721 100644
--- a/subprojects/frontend/.eslintrc.cjs
+++ b/subprojects/frontend/.eslintrc.cjs
@@ -90,6 +90,7 @@ module.exports = {
90 files: [ 90 files: [
91 '.eslintrc.cjs', 91 '.eslintrc.cjs',
92 'config/*.ts', 92 'config/*.ts',
93 'config/*.cjs',
93 'prettier.config.cjs', 94 'prettier.config.cjs',
94 'vite.config.ts', 95 'vite.config.ts',
95 ], 96 ],
@@ -103,6 +104,8 @@ module.exports = {
103 'error', 104 'error',
104 { devDependencies: true }, 105 { devDependencies: true },
105 ], 106 ],
107 // Allow writing to the console in ad-hoc scripts.
108 'no-console': 'off',
106 // Access to the environment in configuration files. 109 // Access to the environment in configuration files.
107 'no-process-env': 'off', 110 'no-process-env': 'off',
108 }, 111 },