deprecate tslint and configure eslint for typescript (#9172)

This commit is contained in:
ʈᵃᵢ
2020-02-20 09:54:33 -08:00
committed by GitHub
parent e55fe43ca6
commit 74423e5d19
18 changed files with 709 additions and 486 deletions

View File

@@ -95,7 +95,7 @@ const SQL_DATA_TYPES = [
const allKeywords = SQL_KEYWORDS.concat(SQL_DATA_TYPES);
const sqlKeywords = allKeywords.map((keyword) => ({
const sqlKeywords = allKeywords.map(keyword => ({
meta: 'sql',
name: keyword,
score: SQL_KEYWORD_AUTOCOMPLETE_SCORE,