mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-20 01:51:54 +03:00
878302dd31
* Override unwanted changes Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: Toledodev <rafael.toledo@engenharia.ufjf.br> Co-authored-by: Rafael Toledo <87545086+Toledodev@users.noreply.github.com> * Fix the tests Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: Toledodev <rafael.toledo@engenharia.ufjf.br> Co-authored-by: Rafael Toledo <87545086+Toledodev@users.noreply.github.com> --------- Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: Toledodev <rafael.toledo@engenharia.ufjf.br> Co-authored-by: Rafael Toledo <87545086+Toledodev@users.noreply.github.com> Co-authored-by: Charles Bochet <charlesBochet@users.noreply.github.com>
15 lines
667 B
JavaScript
15 lines
667 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');
|
|
const matchingStateVariable = require('./rules/matching-state-variable');
|
|
|
|
module.exports = {
|
|
rules: {
|
|
'no-hardcoded-colors': noHardcodedColors,
|
|
'sort-css-properties-alphabetically': cssAlphabetically,
|
|
'styled-components-prefixed-with-styled': styledComponentsPrefixedWithStyled,
|
|
'matching-state-variable': matchingStateVariable
|
|
},
|
|
};
|