aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ROADMAP.md2
-rw-r--r--src/rules/typescript/default.json14
2 files changed, 14 insertions, 2 deletions
diff --git a/ROADMAP.md b/ROADMAP.md
index a18b7c0..8d58bf3 100644
--- a/ROADMAP.md
+++ b/ROADMAP.md
@@ -355,7 +355,7 @@
- [ ] "prefer-regexp-exec"
- [ ] "prefer-string-starts-ends-with"
- [ ] "promise-function-async"
-- [ ] "quotes"
+- [X] "quotes"
- [ ] "require-array-sort-compare"
- [ ] "require-await"
- [ ] "restrict-plus-operands"
diff --git a/src/rules/typescript/default.json b/src/rules/typescript/default.json
index 0967ef4..216245a 100644
--- a/src/rules/typescript/default.json
+++ b/src/rules/typescript/default.json
@@ -1 +1,13 @@
-{}
+{
+ "@typescript-eslint/quotes": [
+ "error",
+ "double",
+ {
+ "allowTemplateLiterals": false,
+ "avoidEscape": false
+ }
+ ],
+ "quotes": [
+ "off"
+ ]
+}