.dependabot
.github
cypress
dev-test
img
packages
scripts
website
.all-contributorsrc
.editorconfig
.eslintrc
.gitignore
.nvmrc
.prettierignore
.prettierrc
.stylelintrc
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
README.md
babel.config.js
commitlint.config.js
custom-preprocessor.js
cypress.json
jest.config.js
lerna.json
netlify.toml
package.json
renovate.json
setupTestFramework.js
yarn.lock
23 lines
482 B
Plaintext
23 lines
482 B
Plaintext
{
|
|
"processors": [
|
|
["stylelint-processor-styled-components", {
|
|
"parserPlugins": [
|
|
"jsx",
|
|
"objectRestSpread",
|
|
"exportDefaultFrom",
|
|
"classProperties",
|
|
],
|
|
}],
|
|
],
|
|
"extends": [
|
|
"stylelint-config-recommended",
|
|
"stylelint-config-styled-components",
|
|
],
|
|
"rules": {
|
|
"block-no-empty": null,
|
|
"no-duplicate-selectors": null,
|
|
"selector-type-no-unknown": [true, {
|
|
"ignoreTypes": ["$dummyValue"],
|
|
}],
|
|
},
|
|
} |