mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-30 23:23:47 +03:00
8d53c63801
* Fix docker install * Move back twenty-eslint-plugin to eslint-plugin-twenty * fix: add bundled yarn * Improve makeifle structure * Update commands and doc * Add pg_graphql binaries * Fix --------- Co-authored-by: Jérémy Magrin <jeremy.magrin@gmail.com>
12 lines
605 B
TypeScript
12 lines
605 B
TypeScript
module.exports = {
|
|
rules: {
|
|
"effect-components": require("./src/rules/effect-components"),
|
|
"no-hardcoded-colors": require("./src/rules/no-hardcoded-colors"),
|
|
"matching-state-variable": require("./src/rules/matching-state-variable"),
|
|
"sort-css-properties-alphabetically": require("./src/rules/sort-css-properties-alphabetically"),
|
|
"styled-components-prefixed-with-styled": require("./src/rules/styled-components-prefixed-with-styled"),
|
|
"component-props-naming": require("./src/rules/component-props-naming"),
|
|
"no-state-useref": require("./src/rules/no-state-useref"),
|
|
},
|
|
};
|