@cnamts/eslint-config-vue
Version:
ESLint configuration used across our Vue.js projects
24 lines (16 loc) • 461 B
Markdown
# ESLint Config
ESLint configurations used across our Vue.js projects.
## Installation
To install the package, you need to use yarn or npm:
```sh
yarn add @cnamts/eslint-config-vue
# OR
npm install @cnamts/eslint-config-vue
```
## Usage
To use the ESLint configuration, you need to create a `.eslintrc.js` file and use the `extends` property to reference `@cnamts/eslint-config-vue`:
```js
module.exports = {
extends: '@cnamts/eslint-config-vue'
};
```