forked from Shopify/polaris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.js
51 lines (51 loc) · 1.82 KB
/
.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/** @type {import('stylelint').Config} */
module.exports = {
extends: ['@shopify/stylelint-plugin/prettier', './stylelint-polaris'],
// Disabling @shopify/stylelint-plugin/configs/core no-unknown-animations as stylelint is not aware of global Polaris keyframes
// TODO: create custom plugin to ensure animation-names match Polaris keyframe names
customSyntax: 'postcss-scss',
rules: {
'no-unknown-animations': null,
'value-keyword-case': ['lower', {camelCaseSvgKeywords: true}],
'at-rule-no-unknown': null,
'scss/at-rule-no-unknown': true,
},
overrides: [
{
files: ['polaris-migrator/**/tests/*.{css,scss}'],
rules: {
'comment-empty-line-before': null,
'declaration-property-value-disallowed-list': null,
'function-disallowed-list': null,
},
},
{
files: ['polaris-react/postcss-mixins/*.css'],
rules: {
'comment-word-disallowed-list': [
/.*/,
{
message:
'Comments in polaris-react/postcss-mixins/*.css cause postcss-mixins to error. To disable lint rules, add them to styleslintrc.js overrides.',
},
],
'scss/at-rule-no-unknown': null,
// Yells at us about at rules. Since it's not configurable (see
// https://github.com/Shopify/polaris/pull/11709), we have to disable
// the entire rule.
'polaris/coverage': null,
},
},
],
ignoreFiles: [
'**/.next/**/*.{css,scss}',
'**/node_modules/**/*.{css,scss}',
'**/dist/**/*.{css,scss}',
'documentation/guides/legacy-polaris-v8-public-api.scss',
'polaris-react/build/**/*.{css,scss}',
'polaris-react/build-internal/**/*.{css,scss}',
'stylelint-polaris/tests/**/*.{css,scss}',
// TODO: Remove and address stylelint errors
'polaris.shopify.com/**/*.{css,scss}',
],
};