Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/naptha/tesseract.js.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJerome Wu <jeromewus@gmail.com>2019-05-22 06:49:11 +0300
committerJerome Wu <jeromewus@gmail.com>2019-05-22 06:49:11 +0300
commit080151711bc545f2d04f5a803b7da8145b6b44d7 (patch)
tree3c8f43cff3698ec17365c63021f43d924f76594a /.eslintrc
parent269629d601978d359464df438783fb6099bc7bf2 (diff)
Fix lint error
Diffstat (limited to '.eslintrc')
-rw-r--r--.eslintrc6
1 files changed, 4 insertions, 2 deletions
diff --git a/.eslintrc b/.eslintrc
index 5103e0e..a3bad8a 100644
--- a/.eslintrc
+++ b/.eslintrc
@@ -3,11 +3,13 @@
"env": {
"browser": true,
"node": true,
- "mocha": true
+ "mocha": true,
+ "worker": true
},
"rules": {
"no-underscore-dangle": 0,
"no-console": 0,
- "global-require": 0
+ "global-require": 0,
+ "camelcase": 0
}
}