From 346da9a7e08af19141a791978b3650bb150eafb0 Mon Sep 17 00:00:00 2001 From: Andinus Date: Fri, 27 Aug 2021 09:36:49 +0530 Subject: JS: Solve resistor-color exercise --- javascript/resistor-color/.eslintrc | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 javascript/resistor-color/.eslintrc (limited to 'javascript/resistor-color/.eslintrc') diff --git a/javascript/resistor-color/.eslintrc b/javascript/resistor-color/.eslintrc new file mode 100644 index 0000000..b8dab20 --- /dev/null +++ b/javascript/resistor-color/.eslintrc @@ -0,0 +1,29 @@ +{ + "root": true, + "parser": "babel-eslint", + "parserOptions": { + "ecmaVersion": 7, + "sourceType": "module" + }, + "globals": { + "BigInt": true + }, + "env": { + "es6": true, + "node": true, + "jest": true + }, + "extends": [ + "eslint:recommended", + "plugin:import/errors", + "plugin:import/warnings" + ], + "rules": { + "linebreak-style": "off", + + "import/extensions": "off", + "import/no-default-export": "off", + "import/no-unresolved": "off", + "import/prefer-default-export": "off" + } +} -- cgit 1.4.1-2-gfad0 class='sub right'>Kartik K. Agaram <vc@akkartik.com>
about summary refs log tree commit diff stats
path: root/atom/package.json
blob: a9936fc4279ef6cc4e9826fc2ea26931523b9be1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17