Skip to content

Commit

Permalink
Actually add name property to plugin classes (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
markwpearce authored Nov 18, 2024
1 parent d5291f0 commit 83c44a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/plugins/codeStyle/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ import { Location } from 'vscode-languageserver-types';

export default class CodeStyle implements CompilerPlugin {

name: 'codeStyle';
name = 'bslint-codeStyle';

constructor(private lintContext: PluginContext) {
}
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/trackCodeFlow/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export interface LintState {

export default class TrackCodeFlow implements CompilerPlugin {

name: 'trackCodeFlow';
name = 'bslint-trackCodeFlow';

constructor(private lintContext: PluginContext) {
}
Expand Down

0 comments on commit 83c44a1

Please sign in to comment.