aboutsummaryrefslogtreecommitdiff
path: root/.jshintrc
diff options
context:
space:
mode:
authorGravatar Frans de Jonge <fransdejonge@gmail.com> 2019-04-01 23:47:36 +0200
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2019-04-01 23:47:36 +0200
commitc2a339f2f8a5a9a44d5feaaa8a000f027873d7da (patch)
tree08f0e4ce576a6ba86925aed88a66d4eb4c4642db /.jshintrc
parente5c8d52aa1ef5a624512b5faf64ea30697ef7e4c (diff)
[CI] Lint JS scripts with jshint (#2315)
Diffstat (limited to '.jshintrc')
-rw-r--r--.jshintrc8
1 files changed, 8 insertions, 0 deletions
diff --git a/.jshintrc b/.jshintrc
new file mode 100644
index 000000000..07d282b1c
--- /dev/null
+++ b/.jshintrc
@@ -0,0 +1,8 @@
+{
+ "esversion" : 6,
+ "browser" : true,
+ "globals": {
+ "confirm": true,
+ "console": true
+ }
+}