diff options
-rw-r--r-- | misc/keymap | 1 | ||||
-rw-r--r-- | stylelint.js | 15 | ||||
-rw-r--r-- | web/stylelint.js | 5 |
3 files changed, 6 insertions, 15 deletions
diff --git a/misc/keymap b/misc/keymap index 1534652..7f16e69 100644 --- a/misc/keymap +++ b/misc/keymap | |||
@@ -52,3 +52,4 @@ keycode 57 = space | |||
52 | keycode 58 = Control | 52 | keycode 58 = Control |
53 | keycode 86 = less greater bar | 53 | keycode 86 = less greater bar |
54 | keycode 97 = Control | 54 | keycode 97 = Control |
55 | keycode 105 = Menu | ||
diff --git a/stylelint.js b/stylelint.js deleted file mode 100644 index 8688a6d..0000000 --- a/stylelint.js +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | module.exports = { | ||
2 | "plugins": [ | ||
3 | "stylelint-order" | ||
4 | ], | ||
5 | "rules": { | ||
6 | "order/order": [ | ||
7 | "custom-properties", | ||
8 | "declarations" | ||
9 | ], | ||
10 | "order/properties-order": [ | ||
11 | "height", | ||
12 | "width", | ||
13 | ] | ||
14 | } | ||
15 | } | ||
diff --git a/web/stylelint.js b/web/stylelint.js new file mode 100644 index 0000000..27491df --- /dev/null +++ b/web/stylelint.js | |||
@@ -0,0 +1,5 @@ | |||
1 | module.exports = { | ||
2 | "extends": [ | ||
3 | "stylelint-config-clean-order" | ||
4 | ] | ||
5 | } | ||