aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-01-04 22:16:09 +0530
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-01-09 19:51:48 +0100
commit649c1ed37ac74765fb7572fa3f703c94827042f4 (patch)
treec00d13e58cbe1df0a4645b7905bccbab3eb9ff92 /scripts
parentIncorporate 'eslint' (fixes #3) (diff)
downloadsophie-649c1ed37ac74765fb7572fa3f703c94827042f4.tar.gz
sophie-649c1ed37ac74765fb7572fa3f703c94827042f4.tar.zst
sophie-649c1ed37ac74765fb7572fa3f703c94827042f4.zip
New configurations based on review comments (WIP)
Signed-off-by: Vijay A <vraravam@users.noreply.github.com>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/.eslintrc.json17
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/.eslintrc.json b/scripts/.eslintrc.json
new file mode 100644
index 0000000..6018373
--- /dev/null
+++ b/scripts/.eslintrc.json
@@ -0,0 +1,17 @@
1{
2 "env": {
3 "node": true
4 },
5 "rules": {
6 "no-process-env": 0,
7 "import/no-extraneous-dependencies": [
8 "error",
9 {
10 // "devDependencies": true,
11 // "optionalDependencies": true,
12 // "peerDependencies": true,
13 "bundledDependencies": true
14 }
15 ]
16 }
17}