mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-18 17:12:53 +03:00
9b34a0ff3d
* Add StyledComponent rule * update doc * update doc * update doc
13 lines
540 B
JavaScript
13 lines
540 B
JavaScript
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
const noHardcodedColors = require('./rules/no-hardcoded-colors');
|
|
const cssAlphabetically = require('./rules/sort-css-properties-alphabetically');
|
|
const styledComponentsPrefixedWithStyled = require('./rules/styled-components-prefixed-with-styled');
|
|
|
|
module.exports = {
|
|
rules: {
|
|
'no-hardcoded-colors': noHardcodedColors,
|
|
'sort-css-properties-alphabetically': cssAlphabetically,
|
|
'styled-components-prefixed-with-styled': styledComponentsPrefixedWithStyled,
|
|
},
|
|
};
|