1.eslint 关于 空格 或tab 报错的解决办法
- 报像 disallow all tabs 这种错时
添加如下代码
/* eslint-disable */
/* eslint no-tabs: ["error", { allowIndentationTabs: true }] */
例如下面文件
<script>
/* eslint no-tabs: ["error", { allowIndentationTabs: true }] */
/* eslint-disable */
import DrawerCommon from '@/components/drawer-common'
// import {
// getNCProgram,
// addNCProgram,
// delNCProgram,
// editNCProgram
// } from '@/api/ncProgram.js'
import {
mapState,
mapGetters,
mapActions
网友评论