@abdullahceylan/eslint-config

ESLint Configuration.

Usage no npm install needed!

<script type="module">
  import abdullahceylanEslintConfig from 'https://cdn.skypack.dev/@abdullahceylan/eslint-config';
</script>

README

@abdullahceylan/eslint-config

ESLint configurations that I've used.

Install

npm install --save-dev @abdullahceylan/eslint-config

or

yarn add --dev @abdullahceylan/eslint-config

Usage

  • Create .eslintrc.js folder into root directory
  • Paste following:
    module.exports = {
      parser: 'babel-eslint',
      extends: [
        '@abdullahceylan/eslint-config',
      ],
      env: {
        es6: true,
      },
      rules: {
        // your own rules
      },
    };