aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.json
diff options
context:
space:
mode:
Diffstat (limited to '.eslintrc.json')
-rw-r--r--.eslintrc.json10
1 files changed, 2 insertions, 8 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
index 3d216f4..9b3ff33 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -3,13 +3,7 @@
"parser": "@typescript-eslint/parser",
"ignorePatterns": ["dist"],
"rules": {
- "quotes": [
- "error",
- "double",
- {
- "avoidEscape": true
- }
- ],
+ "quotes": ["error", "double", { "avoidEscape": true }],
"jsx-quotes": ["error", "prefer-double"],
"no-mixed-spaces-and-tabs": "error",
"indent": ["error", 4, { "SwitchCase": 1 }],
@@ -25,7 +19,7 @@
"block-spacing": ["error", "always"],
"object-curly-spacing": ["error", "always"],
"eqeqeq": ["error", "always", { "null": "ignore" }],
- "spaced-comment": ["error", "always"],
+ "spaced-comment": ["error", "always", { "markers": ["!"] }],
"yoda": "error",
"prefer-destructuring": ["error", { "object": true, "array": false }],
"operator-assignment": ["error", "always"],