2023-06-14 17:56:29 +03:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
|
|
const noHardcodedColors = require('./rules/no-hardcoded-colors');
|
|
|
|
const cssAlphabetically = require('./rules/sort-css-properties-alphabetically');
|
2023-08-18 06:58:02 +03:00
|
|
|
const styledComponentsPrefixedWithStyled = require('./rules/styled-components-prefixed-with-styled');
|
2023-06-14 17:56:29 +03:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
rules: {
|
|
|
|
'no-hardcoded-colors': noHardcodedColors,
|
|
|
|
'sort-css-properties-alphabetically': cssAlphabetically,
|
2023-08-18 06:58:02 +03:00
|
|
|
'styled-components-prefixed-with-styled': styledComponentsPrefixedWithStyled,
|
2023-06-14 17:56:29 +03:00
|
|
|
},
|
|
|
|
};
|