1.0.6 • Published 6 years ago

@matcherino/shared-configs v1.0.6

Weekly downloads
74
License
ISC
Repository
-
Last release
6 years ago

@matcherino/shared-configs

Matcherino, Inc. standardized developer configurations.

Node Project Installation

To install with dependencies

    yarn add eslint@latest babel-eslint@latest @matcherino/shared-configs

Create .eslintrc.js for node project

const {eslintrc} = require('@matcherino/shared-configs');

module.exports = {
    ...eslintrc
    // overrides here
};

Create .prettierrc.js

const {prettierrc} = require('@matcherino/shared-configs');

module.exports = {
    ...prettierrc
    // overrides here
};

React Project Installation

To install with dependencies for React

    yarn add eslint@latest babel-eslint@latest eslint-plugin-react@latest @matcherino/shared-configs

Create .eslintrc.js for react project

const {eslintrc} = require('@matcherino/shared-configs/react');

module.exports = {
    ...eslintrc
    // overrides here
};

Create .prettierrc.js

const {prettierrc} = require('@matcherino/shared-configs/react');

module.exports = {
    ...prettierrc
    // overrides here
};
1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago