Use the @antfu/eslint-config library as the base for all the configurations:
base
import antfu from '@antfu/eslint-config';
export default antfu({
stylistic: {
semi: true,
overrides: {
'style/brace-style': ['error', '1tbs'],
'no-console': 'off',
},
},
typescript: {
tsconfigPath: 'tsconfig.json',
},
});
Then dunno if for cdk we can implement something similar to what is already implemented with shopify.
Keep in mind that shopify uses the old eslint config, while antfu uses the new one
Use the
@antfu/eslint-configlibrary as the base for all the configurations:base
Then dunno if for cdk we can implement something similar to what is already implemented with shopify.
Keep in mind that shopify uses the old eslint config, while antfu uses the new one