1.0.0 • Published 3 years ago

@vilanz/tooling v1.0.0

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

tooling

JS tooling for my personal projects.

eslint

ESLint config with Airbnb's standards plus Typescript and React support.

module.exports = {
  ...require('@vilanz/tooling/eslint'), // can't use extends because it requires the package name to be prefixed with eslint-config-*
  parserOptions: {
    project: './tsconfig.json',
  },
};

prettier

Prettier config.

module.exports = require('@vilanz/tooling/prettier');

typescript

Typescript config for Node 16+, with React support.

{
  "extends": "@vilanz/tooling/typescript"
}
1.0.0

3 years ago