1.0.6 • Published 5 years ago

@matcherino/shared-configs v1.0.6

Weekly downloads
74
License
ISC
Repository
-
Last release
5 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

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago