Files
cunningham/packages/react/.eslintrc.json
Nathan Vasse 994d42578e (react) add DataGrid, SimpleDataGrid components
The DataGrid component can be considered as the core one, which provides
a full controlled component, but more complicated than SimpleDataGrid
which is based on DataGrid. SimpleDataGrid is intended to give a simple
ready-to-use data grid for client side data for example.
2023-03-28 12:00:27 +02:00

12 lines
295 B
JSON

{
"root": true,
"extends": [
"custom"
],
"parserOptions": {
"project": "./tsconfig.eslint.json"
},
"rules": {
"import/no-extraneous-dependencies": ["error", {"devDependencies": ["vite.config.ts", "cunningham.ts","**/*.stories.tsx", "**/*.spec.tsx", "src/tests/*"]}]
}
}