We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent faaa254 commit e945701Copy full SHA for e945701
language/linter.ts
@@ -161,7 +161,6 @@ export default class Linter {
161
if (ruleCount > 0 && ![skipRules.single, skipRules.singleRules].includes(currentRule)) {
162
163
const currentProcedure = globalScope.procedures.find(proc => proc.position.path === data.uri && lineNumber >= proc.range.start && lineNumber <= proc.range.end);
164
- // const currentProcedure = globalScope.procedures.find(proc => lineNumber >= proc.range.start && lineNumber <= proc.range.end);
165
const currentScope = globalScope.merge(inProcedure && currentProcedure ? currentProcedure.scope : undefined);
166
167
// Only fetch the names if we have a rule that requires it. It might be slow.
0 commit comments