当前位置: 代码迷 >> 综合 >> .editorconfig和 .eslintrc.js 对代码风格配置
  详细解决方案

.editorconfig和 .eslintrc.js 对代码风格配置

热度:74   发布时间:2023-12-12 22:08:20.0

问题描述:
自己的代码风格如下几点:
0: 本人喜欢用 tab 缩进
1:

配置如下:
.editorconfig

root = true
[*]
charset = utf-8
indent_style = tab
indent_size = tab
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

.eslintrc.js

// add your custom rules hererules: {
    // allow async-await'generator-star-spacing': 'off',// allow debugger during development'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off','indent': 'off','no-tabs': 'off','vue/script-indent': ['error',4,{
    'baseIndent': 0}]}