UNPKG

@exadel/eslint-config-esl

Version:

Shared ESLint config used by ESL (@exadel/esl) team. Internal projects usage.

18 lines (16 loc) 355 B
import importPlugin from 'eslint-plugin-import-x'; export default [ { plugins: { 'import': importPlugin }, rules: { // Enforce a convention in module import order 'import/order': [ 'warn', { 'groups': ['builtin', 'external', 'parent', 'sibling', 'index', 'object', 'type'] } ] } } ];