Welcome to mirror list, hosted at ThFree Co, Russian Federation.

propertySets.js « reference « lib « stylelint « node_modules « assets - github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3bfe3af8a61f150821b32c34785f8bd6c587df87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
'use strict';

const propertySets = {};

propertySets.acceptCustomIdents = new Set([
	'animation',
	'animation-name',
	'font',
	'font-family',
	'counter-increment',
	'grid-row',
	'grid-column',
	'grid-area',
	'list-style',
	'list-style-type',
]);

module.exports = propertySets;