gmc168 8e3648096d
Create es6
模块。出口 =  {
  扩展:[ 'airbnb-typescript/base' ] ,
  解析器选项:{
    createDefaultProgram : true ,
    项目:'./tsconfig.json' ,
  },
  解析器:'@typescript-eslint/parser' ,
  插件:[ '@typescript-eslint' ] ,
  规则:{
    '无控制台' : '关闭' ,
    'no-restricted-syntax' : 'off' ,
    'no-continue':'off' ,
    // 禁止使用 var
    '无变量':'错误' ,
    // 优先使用 interface 而不是 type
    '@typescript-eslint/consistent-type-definitions' : [ 'error' ,  'interface' ] ,
  },
2021-05-29 23:25:55 +08:00

18 lines
548 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

模块。出口 = {
扩展:[ 'airbnb-typescript/base' ]
解析器选项:{
createDefaultProgram : true ,
项目:'./tsconfig.json'
},
解析器:'@typescript-eslint/parser'
插件:[ '@typescript-eslint' ]
规则:{
'无控制台' : '关闭' ,
'no-restricted-syntax' : 'off' ,
'no-continue''off'
// 禁止使用 var
'无变量''错误'
// 优先使用 interface 而不是 type
'@typescript-eslint/consistent-type-definitions' : [ 'error' , 'interface' ] ,
},