Files
twenty/packages/eslint-plugin-twenty-ts/index.ts
Charles Bochet 7fa80c5f71 Fix eslint setup
2023-09-17 08:28:05 -07:00

10 lines
465 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"),
},
};