diff options
author | Gaming4JC <g4jc@bulletmail.org> | 2018-05-13 20:39:04 -0400 |
---|---|---|
committer | Gaming4JC <g4jc@bulletmail.org> | 2018-05-13 20:39:04 -0400 |
commit | 3680620f363ce0921a0d4cc9c3347db44f9c144d (patch) | |
tree | c28e771beecfd68c1994d360d5d9191aaf7d5804 /.eslintrc.js | |
parent | 0eb46dae7c3b33c6254930a5f654b1c46982583c (diff) | |
download | iceweasel-uxp-3680620f363ce0921a0d4cc9c3347db44f9c144d.tar.gz |
add .eslintrc.js
Diffstat (limited to '.eslintrc.js')
-rw-r--r-- | .eslintrc.js | 15 |
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", + }] + } +}; |