feat: add excludeFromChecks config property#235
feat: add excludeFromChecks config property#235rainerhahnekamp wants to merge 1 commit intosoftarc-consulting:mainfrom
excludeFromChecks config property#235Conversation
|
|
This feature would be greatly appreciated. Any status updates? |
|
When will this happen? My project has a very simple configuration yet it shows Config: import { SheriffConfig, anyTag, sameTag } from '@softarc/sheriff-core';
export const config: SheriffConfig = {
excludeRoot: true,
enableBarrelLess: true,
entryFile: 'src/main.ts',
modules: {
'src/app': {
'features/<feature>': 'feature:<feature>',
core: 'core',
shared: 'shared',
},
'api/<api>': 'api:<api>',
},
depRules: {
root: [sameTag, anyTag],
noTag: [sameTag],
'feature:*': [sameTag, 'core', 'shared'],
core: [anyTag],
shared: [anyTag],
'api:*': [anyTag],
},
};List result:
|
|
+1 this would be nice to have, the sheriff is checking my |
|
Exclusion from Got it. In your case though, I think the proper place should be the ESLint config because I don't think your source code has imports to |



Closes #234