@agilecode/eslint

ESLint config

Usage no npm install needed!

<script type="module">
  import agilecodeEslint from 'https://cdn.skypack.dev/@agilecode/eslint';
</script>

README

Agilecode ESLint config

Install

To install peer dependencies of this project need use install-peerdeps package

# If you're using npm
npm install -g install-peerdeps

# If you're using yarn
yarn global add install-peerdeps

cd your-project-directory

install-peerdeps @agilecode/eslint --dev

Usage

Create in root of your project .eslintrc.js file:

const config = require('@agilecode/eslint')
module.exports = config

or if you want add/rewrite some rules:

const config = require('@agilecode/eslint');
module.exports = {
  ...config,
  rules: {
    ...config.rules,
    '@typescript-eslint/member-delimiter-style': 'off',
    semi: 'off',
  },
};

TODO:

  • publish
  • fix deps
  • update deps
  • describe how to use
  • changelog
  • validation script
  • ci-publish
  • readme