New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@cenk1cenk2/eslint-config

Package Overview
Dependencies
Maintainers
1
Versions
291
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cenk1cenk2/eslint-config

Eslint configuration for my taste.

0.2.5
npm
Version published
Weekly downloads
564
-21.56%
Maintainers
1
Weekly downloads
 
Created
Source

@cenk1cenk2/eslint-config

Build Status

Supported Functionality

index -> javascript
react-typescript
typescript

Extend Typescript Import Path Order

module.exports = {
  "extends": ["@cenk1cenk2/eslint-config/typescript"],
  rules: {
    'import/order': [
      'error',
      {
        pathGroups: [
          {
            pattern: '@root/**',
            group: 'parent'
          }
        ],
        pathGroupsExcludedImportTypes: [
          'builtin'
        ],
        groups: [
          [
            'builtin',
            'external'
          ],
          [
            'index',
            'parent',
            'sibling'
          ]
        ],
        'newlines-between': 'always',
        alphabetize: {
          order: 'asc',
          caseInsensitive: true
        }
      }
    ]
  }
}

moer headers

for test

FAQs

Package last updated on 30 Apr 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts