aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/.stylelintrc.js
diff options
context:
space:
mode:
Diffstat (limited to 'language-web/.stylelintrc.js')
-rw-r--r--language-web/.stylelintrc.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/language-web/.stylelintrc.js b/language-web/.stylelintrc.js
new file mode 100644
index 00000000..7adf8f26
--- /dev/null
+++ b/language-web/.stylelintrc.js
@@ -0,0 +1,15 @@
1module.exports = {
2 extends: 'stylelint-config-recommended-scss',
3 // Simplified for only :export to TypeScript based on
4 // https://github.com/pascalduez/stylelint-config-css-modules/blob/d792a6ac7d2bce8239edccbc5a72e0616f22d696/index.js
5 rules: {
6 'selector-pseudo-class-no-unknown': [
7 true,
8 {
9 ignorePseudoClasses: [
10 'export',
11 ],
12 },
13 ],
14 },
15};