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

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <code@chrisrebert.com>2016-05-31 10:46:33 +0300
committerChris Rebert <code@chrisrebert.com>2016-05-31 10:46:33 +0300
commit4d3bd8e6c5da15f9427b84e192c5f0b602f54c7f (patch)
tree342d03d168fdbb82a77257fa597157e1c1186d8a /js/.eslintrc.json
parentc4add0c2f30b8404bd1d227b16d7668a236c1d63 (diff)
Migrate parser & env config to ESLint 2.0.0
Diffstat (limited to 'js/.eslintrc.json')
-rw-r--r--js/.eslintrc.json5
1 files changed, 5 insertions, 0 deletions
diff --git a/js/.eslintrc.json b/js/.eslintrc.json
index b866b125bf..11e8f26ef6 100644
--- a/js/.eslintrc.json
+++ b/js/.eslintrc.json
@@ -1,8 +1,13 @@
{
"root": true,
"parser": "babel-eslint",
+ "parserOptions": {
+ "ecmaVersion": 6,
+ "sourceType": "module"
+ },
"env": {
"browser": true,
+ "es6": true,
"jquery": true
},
"rules": {