aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2018-09-21 15:39:49 +0300
committerGravatar Vitaly Takmazov2018-09-21 15:39:49 +0300
commit17f98537f4f71c7f2f7a13663915cb219f719211 (patch)
tree3d97446140bea9e2cf07a5629fe364f953fdca00
parentee05cb97cab798724b2f74ae7575cae4550f07aa (diff)
config linters to omit warnings
-rw-r--r--juick-server/.eslintrc2
-rw-r--r--juick-server/.stylelintrc.json3
2 files changed, 3 insertions, 2 deletions
diff --git a/juick-server/.eslintrc b/juick-server/.eslintrc
index 5328a00b..e1b73925 100644
--- a/juick-server/.eslintrc
+++ b/juick-server/.eslintrc
@@ -33,7 +33,7 @@
"no-undef": "warn",
"constructor-super": "warn",
"valid-typeof": "warn",
- "no-eq-null": "warn",
+ "no-eq-null": "off",
"no-shadow-restricted-names": "warn",
"no-trailing-spaces": "warn",
"semi": "warn",
diff --git a/juick-server/.stylelintrc.json b/juick-server/.stylelintrc.json
index d439742a..e1c32ef0 100644
--- a/juick-server/.stylelintrc.json
+++ b/juick-server/.stylelintrc.json
@@ -10,6 +10,7 @@
"rule-empty-line-before": null,
"selector-pseudo-element-colon-notation": null,
"shorthand-property-no-redundant-values": null,
- "no-descending-specificity": null
+ "no-descending-specificity": null,
+ "selector-type-no-unknown": null
}
}