1.0.3 • Published 2 years ago

stylelint-common-config v1.0.3

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

vue3 + typescript eslint 规范

使用方法

在 .eslintrc.js 中写入以下代码

使用默认配置

const common = require('vue3-eslint-config');
module.exports = common;

覆盖配置方法

const { merge } = require('webpack-merge');
const common = require('vue3-eslint-config');

module.exports = merge(common, {
    rules: {} // 此处可自定义规则,覆盖默认规则
});