mirror of
https://github.com/facebook/docusaurus.git
synced 2024-11-25 16:46:13 +08:00
ebd5340205
* chore: various improvements to repo setup * fix again * fix
37 lines
1.0 KiB
JavaScript
Vendored
37 lines
1.0 KiB
JavaScript
Vendored
/**
|
|
* 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 = {
|
|
extends: ['stylelint-config-standard', 'stylelint-config-prettier'],
|
|
plugins: ['stylelint-copyright'],
|
|
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.`,
|
|
},
|
|
],
|
|
'selector-pseudo-class-no-unknown': [
|
|
true,
|
|
{
|
|
// :global is a CSS modules feature to escape from class name hashing
|
|
ignorePseudoClasses: ['global'],
|
|
},
|
|
],
|
|
'selector-class-pattern': null,
|
|
'custom-property-empty-line-before': null,
|
|
'selector-id-pattern': null,
|
|
'declaration-empty-line-before': null,
|
|
'comment-empty-line-before': null,
|
|
'value-keyword-case': ['lower', {camelCaseSvgKeywords: true}],
|
|
},
|
|
};
|