From 8e3648096df4259b070be119729df75cff64a97a Mon Sep 17 00:00:00 2001 From: gmc168 <41809008+gmc168@users.noreply.github.com> Date: Sat, 29 May 2021 23:25:55 +0800 Subject: [PATCH] Create es6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 模块。出口 = { 扩展:[ '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' ] , }, --- es6 | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 es6 diff --git a/es6 b/es6 new file mode 100644 index 0000000..1264971 --- /dev/null +++ b/es6 @@ -0,0 +1,17 @@ +模块。出口 = { + 扩展:[ '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' ] , + },