2.0.1 • Published 2 years ago

eslint-config-simrobin v2.0.1

Weekly downloads
18
License
MIT
Repository
github
Last release
2 years ago

Eslint and Prettier config for simrobin projects

For javascript projects, add .eslintrc.js add the root of the project containing:

module.exports = {
  root: true,
  extends: [
    'eslint-config-simrobin',
  ],
};

For typescript projects, add .eslintrc.js add the root of the project containing:

module.exports = {
  root: true,
  extends: [
    'eslint-config-simrobin/typescript',
  ],
};