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

github.com/twbs/stylelint-config-twbs-bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.eslintrc.json')
-rw-r--r--.eslintrc.json10
1 files changed, 9 insertions, 1 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
index 99c529a..22b0547 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -5,13 +5,21 @@
"node": true
},
"parserOptions": {
- "ecmaVersion": 2017
+ "ecmaVersion": 2019
},
"extends": "eslint:recommended",
"rules": {
+ "comma-dangle": [
+ "error",
+ "never"
+ ],
"quotes": [
"error",
"single"
+ ],
+ "quote-props": [
+ "error",
+ "always"
]
}
}