There was an error while loading. Please reload this page.
1 parent 450f265 commit d2190c1Copy full SHA for d2190c1
server/bin/main.js
@@ -1,4 +1,5 @@
1
#!/usr/bin/env node
2
+/* eslint-disable no-console */
3
4
const server = require('../out/index')
5
const package = require('../package')
server/src/analyser.ts
@@ -89,9 +89,11 @@ export default class Analyzer {
89
90
private treeSitterTypeToLSPKind: Kinds = {
91
// These keys are using underscores as that's the naming convention in tree-sitter.
92
+ /* eslint-disable @typescript-eslint/camelcase */
93
environment_variable_assignment: LSP.SymbolKind.Variable,
94
function_definition: LSP.SymbolKind.Function,
95
variable_assignment: LSP.SymbolKind.Variable,
96
+ /* eslint-enable @typescript-eslint/camelcase */
97
}
98
99
public constructor(parser: Parser) {
0 commit comments