@atlaskit/editor-plugin-width
Version:
Width plugin for @atlaskit/editor-core
15 lines (14 loc) • 335 B
JavaScript
module.exports = {
rules: {
'@typescript-eslint/no-duplicate-imports': 'error',
'@typescript-eslint/no-explicit-any': 'error',
},
overrides: [
{
files: ['**/__tests__/**/*.{js,ts,tsx}', '**/examples/**/*.{js,ts,tsx}'],
rules: {
'@typescript-eslint/no-explicit-any': 'off',
},
},
],
};