@kinematic-lab/eslint-config-vue
contains the default Vue3 ESLint configuration for kinematic-labs projects.
See changelogs: Here.
See npm: here.
To use @kinematic-lab/eslint-config-vue
in your project, you must first install it as a dependency. You can do this by running the following command in your terminal:
$ pnpm i @kinematic-lab/eslint-config-vue -D
$ npm i @kinematic-lab/eslint-config-vue -D
$ yarn add @kinematic-lab/eslint-config-vue --dev
Once you have installed the package, you can use it by extending it in your ESLint configuration file. See the examples below:
module.exports = {
extends: ['@kinematic-lab/eslint-config-vue'],
// other configuration
};
{
"extends": ["@kinematic-lab/eslint-config-vue"],
// other configuration
}