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>2021-11-30 16:24:18 +0300
committerGitHub <noreply@github.com>2021-11-30 16:24:18 +0300
commitdb7a6cd79ae5965f717f61946a83a71a87587490 (patch)
tree5fad7fe4f23acae9b144a057d4cd4696329de2ac
parent0c724d50f50a2cd5e4fcd50cc65e0c6a173ecb4e (diff)
Update ESLint config (#132)
-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"
]
}
}