aboutsummaryrefslogtreecommitdiff
path: root/js/eslint.json
diff options
context:
space:
mode:
Diffstat (limited to 'js/eslint.json')
-rw-r--r--js/eslint.json18
1 files changed, 18 insertions, 0 deletions
diff --git a/js/eslint.json b/js/eslint.json
new file mode 100644
index 0000000..b3af4fe
--- /dev/null
+++ b/js/eslint.json
@@ -0,0 +1,18 @@
+{
+ "env": {
+ "browser": false,
+ "node": true,
+ },
+ "rules": {
+ "camelcase": false,
+ "quotes": false,
+ "no-process-exit": false,
+ "no-empty": false,
+ "new-caps": {
+ "newIsCap": true,
+ "capIsNew": true,
+ "newIsCapExceptions": [],
+ "capIsNewExceptions": []
+ }
+ }
+}