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:
authorXhmikosR <xhmikosr@gmail.com>2020-04-26 17:09:15 +0300
committerXhmikosR <xhmikosr@gmail.com>2020-04-26 17:09:15 +0300
commit162491e670b689a965db33308b3ab061517f24ec (patch)
treef3cfef8ba080fd1b54b18018f19a37c8480827c5 /.eslintrc.json
parent136f59999a86018121a8081054a23ca5491b4a06 (diff)
ESLint: use single quotes.
Diffstat (limited to '.eslintrc.json')
-rw-r--r--.eslintrc.json8
1 files changed, 7 insertions, 1 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
index 295bdde..99c529a 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -7,5 +7,11 @@
"parserOptions": {
"ecmaVersion": 2017
},
- "extends": "eslint:recommended"
+ "extends": "eslint:recommended",
+ "rules": {
+ "quotes": [
+ "error",
+ "single"
+ ]
+ }
}