aboutsummaryrefslogtreecommitdiffstats
path: root/backend/.eslintrc.json
diff options
context:
space:
mode:
Diffstat (limited to 'backend/.eslintrc.json')
-rw-r--r--backend/.eslintrc.json15
1 files changed, 15 insertions, 0 deletions
diff --git a/backend/.eslintrc.json b/backend/.eslintrc.json
new file mode 100644
index 0000000..76c5bb4
--- /dev/null
+++ b/backend/.eslintrc.json
@@ -0,0 +1,15 @@
+{
+ "env": {
+ "node": true,
+ "commonjs": true,
+ "es2021": true
+ },
+ "extends": ["eslint:recommended", "prettier"],
+ "parserOptions": {
+ "ecmaVersion": "latest"
+ },
+ "rules": {
+ "no-console": "off",
+ "no-unused-vars": ["error", { "argsIgnorePattern": "next" }]
+ }
+} \ No newline at end of file