summaryrefslogtreecommitdiff
path: root/.eslintrc.js
diff options
context:
space:
mode:
authorGaming4JC <g4jc@bulletmail.org>2018-05-13 20:39:04 -0400
committerGaming4JC <g4jc@bulletmail.org>2018-05-13 20:39:04 -0400
commit3680620f363ce0921a0d4cc9c3347db44f9c144d (patch)
treec28e771beecfd68c1994d360d5d9191aaf7d5804 /.eslintrc.js
parent0eb46dae7c3b33c6254930a5f654b1c46982583c (diff)
downloadiceweasel-uxp-3680620f363ce0921a0d4cc9c3347db44f9c144d.tar.gz
add .eslintrc.js
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
new file mode 100644
index 0000000..d3d2f32
--- /dev/null
+++ b/.eslintrc.js
@@ -0,0 +1,15 @@
+"use strict";
+
+module.exports = {
+ "extends": [
+ "../toolkit/.eslintrc.js"
+ ],
+
+ "rules": {
+ "no-unused-vars": ["error", {
+ "vars": "local",
+ "varsIgnorePattern": "^Cc|Ci|Cu|Cr|EXPORTED_SYMBOLS",
+ "args": "none",
+ }]
+ }
+};