.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / reference / punctuationSets.js
1 "use strict";
2
3 const punctuationSets = {};
4
5 punctuationSets.mediaFeaturePunctuation = new Set([
6   ":",
7   "=",
8   ">",
9   ">=",
10   "<",
11   "<="
12 ]);
13
14 punctuationSets.nonSpaceCombinators = new Set([">", "+", "~", ">>>", "/deep/"]);
15
16 module.exports = punctuationSets;