DocSpace-client/packages/shared/tsconfig.eslint.json

32 lines
572 B
JSON
Raw Normal View History

2023-11-24 07:43:45 +00:00
{
"extends": "./tsconfig.json",
"include": [
// 👇️ add all the directories and files
// that you want to lint here
"utils",
"components",
"enums",
"constants",
"themes",
"types",
2023-12-04 07:01:56 +00:00
"skeletons",
"HOC",
"hooks",
"api",
2024-01-14 06:25:48 +00:00
"sw",
"selectors",
2024-01-23 07:24:57 +00:00
"store",
"dialogs",
2023-11-24 07:43:45 +00:00
// add all files in which you see
// the "parserOptions.project" error
".eslintrc.cjs",
"__mocks__",
"jest.config.ts",
".storybook",
"babel.config.ts",
"index.d.ts",
2024-02-18 17:09:28 +00:00
"tsconfig.eslint.json",
"routes"
2023-11-24 07:43:45 +00:00
]
}