forked from facebookincubator/infima
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.js
30 lines (29 loc) · 841 Bytes
/
.stylelintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
module.exports = {
plugins: [
'stylelint-copyright',
'stylelint-declaration-block-no-ignored-properties',
'stylelint-high-performance-animation',
'stylelint-order',
],
rules: {
'docusaurus/copyright-header': [
true,
{
header: `*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.`,
},
],
'order/properties-alphabetical-order': true,
'plugin/declaration-block-no-ignored-properties': true,
'plugin/no-low-performance-animation-properties': true,
},
};