diff options
author | 2025-04-29 10:47:43 +0530 | |
---|---|---|
committer | 2025-04-29 10:47:43 +0530 | |
commit | a2e0a65b2599267efe94d665d6305f59b225bbd5 (patch) | |
tree | e2cef2031e3f7655e0c5f419020a3f1064c3b7b8 /backend/.eslintrc.json | |
parent | 570bf0f3f065d583d6f94ecfc61aae93ba3e43de (diff) | |
download | restaurant-master.tar.gz restaurant-master.tar.bz2 restaurant-master.zip |
Diffstat (limited to 'backend/.eslintrc.json')
-rw-r--r-- | backend/.eslintrc.json | 15 |
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 |