0.2.10 • Published 3 years ago

@arinthros/eslint-config v0.2.10

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

@arinthros/eslint-config

A set of common configurations for JavaScript projects.

ESLint

.eslintrc.js

module.exports = {
  extends: ['@arinthros/common/eslint'],
}

Prettier

.prettierrc.js

module.exports = require('@arinthros/common/prettier')

// To add your own custom rules:
module.exports = {
  ...require('@arinthros/common/prettier'),
  // Put your own rule preferences here.
}