-
Notifications
You must be signed in to change notification settings - Fork 395
Added rule: AvoidLongLines #1329
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 7 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
a356d41
Added rule AvoidLongLines
thomasrayner b6a1c9f
cleaning up typos
thomasrayner 71acba4
Made line length configurable and disabled rule by default a/p @bergm…
thomasrayner aa3b56d
Updated tests for AvoidLongLines
thomasrayner f322bfa
Merge https://github.com/PowerShell/PSScriptAnalyzer into avoidlonglines
bergmeister 4683cd8
Fix test failures due to added rule and missing entry in main README.…
bergmeister df0eec2
Add documentation
bergmeister ac249ee
Added rule AvoidLongLines
thomasrayner 2737d6e
cleaning up typos
thomasrayner 7a40b9d
Made line length configurable and disabled rule by default a/p @bergm…
thomasrayner 7af7234
Updated tests for AvoidLongLines
thomasrayner 165c180
Fix test failures due to added rule and missing entry in main README.…
bergmeister 6501709
Add documentation
bergmeister 1c624c3
Merge branch 'avoidlonglines' of https://github.com/thomasrayner/pssc…
thomasrayner 8179dbe
changes a/p feedback from rjmholt
thomasrayner 567d4bc
Added test to ensure the rule gets the right extent
thomasrayner File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# AvoidLongLines | ||
|
||
**Severity Level: Warning** | ||
|
||
## Description | ||
|
||
Lines should be no longer than a configured number of characters (default: 120), including leading whitespace (indentation). | ||
|
||
**Note**: This rule is not enabled by default. The user needs to enable it through settings. | ||
|
||
## Configuration | ||
|
||
```powershell | ||
Rules = @{ | ||
PSAvoidLongLines = @{ | ||
Enable = $true | ||
LineLength = 120 | ||
} | ||
} | ||
``` | ||
|
||
### Parameters | ||
|
||
#### Enable: bool (Default value is `$false`) | ||
|
||
Enable or disable the rule during ScriptAnalyzer invocation. | ||
|
||
#### LineLength: int (Default value is 120) | ||
|
||
Optional parameter do override the default line length. | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,153 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Text.RegularExpressions; | ||
#if !CORECLR | ||
using System.ComponentModel.Composition; | ||
#endif | ||
using System.Globalization; | ||
using System.Management.Automation.Language; | ||
using Microsoft.Windows.PowerShell.ScriptAnalyzer.Generic; | ||
|
||
namespace Microsoft.Windows.PowerShell.ScriptAnalyzer.BuiltinRules | ||
{ | ||
/// <summary> | ||
/// AvoidLongLines: Checks for lines longer than 120 characters | ||
/// </summary> | ||
#if !CORECLR | ||
[Export(typeof(IScriptRule))] | ||
#endif | ||
public class AvoidLongLines : ConfigurableRule | ||
{ | ||
/// <summary> | ||
/// Construct an object of AvoidLongLines type. | ||
/// </summary> | ||
public AvoidLongLines() : base() | ||
thomasrayner marked this conversation as resolved.
Show resolved
Hide resolved
thomasrayner marked this conversation as resolved.
Show resolved
Hide resolved
|
||
{ | ||
// Enable the rule by default | ||
Enable = false; | ||
thomasrayner marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
||
[ConfigurableRuleProperty(defaultValue: 120)] | ||
public int LineLength { get; set; } | ||
thomasrayner marked this conversation as resolved.
Show resolved
Hide resolved
|
||
/// <summary> | ||
/// Analyzes the given ast to find violations. | ||
/// </summary> | ||
/// <param name="ast">AST to be analyzed. This should be non-null</param> | ||
/// <param name="fileName">Name of file that corresponds to the input AST.</param> | ||
/// <returns>A an enumerable type containing the violations</returns> | ||
public override IEnumerable<DiagnosticRecord> AnalyzeScript(Ast ast, string fileName) | ||
{ | ||
if (ast == null) | ||
{ | ||
throw new ArgumentNullException("ast"); | ||
thomasrayner marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
||
var diagnosticRecords = new List<DiagnosticRecord>(); | ||
|
||
string[] lines = Regex.Split(ast.Extent.Text, @"\r?\n"); | ||
thomasrayner marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
for (int lineNumber = 0; lineNumber < lines.Length; lineNumber++) | ||
{ | ||
var line = lines[lineNumber]; | ||
thomasrayner marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
if (line.Length > LineLength) | ||
thomasrayner marked this conversation as resolved.
Show resolved
Hide resolved
|
||
{ | ||
var startLine = lineNumber + 1; | ||
thomasrayner marked this conversation as resolved.
Show resolved
Hide resolved
|
||
var endLine = startLine; | ||
var startColumn = 1; | ||
var endColumn = line.Length; | ||
|
||
var violationExtent = new ScriptExtent( | ||
new ScriptPosition( | ||
ast.Extent.File, | ||
startLine, | ||
startColumn, | ||
line | ||
), | ||
new ScriptPosition( | ||
ast.Extent.File, | ||
endLine, | ||
endColumn, | ||
line | ||
)); | ||
|
||
var record = new DiagnosticRecord( | ||
String.Format(CultureInfo.CurrentCulture, Strings.AvoidLongLinesError), | ||
violationExtent, | ||
GetName(), | ||
GetDiagnosticSeverity(), | ||
ast.Extent.File, | ||
null | ||
); | ||
diagnosticRecords.Add(record); | ||
} | ||
} | ||
|
||
return diagnosticRecords; | ||
} | ||
|
||
/// <summary> | ||
/// Retrieves the common name of this rule. | ||
/// </summary> | ||
public override string GetCommonName() | ||
{ | ||
return string.Format(CultureInfo.CurrentCulture, Strings.AvoidLongLinesCommonName); | ||
} | ||
|
||
/// <summary> | ||
/// Retrieves the description of this rule. | ||
/// </summary> | ||
public override string GetDescription() | ||
{ | ||
return string.Format(CultureInfo.CurrentCulture, Strings.AvoidLongLinesDescription); | ||
} | ||
|
||
/// <summary> | ||
/// Retrieves the name of this rule. | ||
/// </summary> | ||
public override string GetName() | ||
{ | ||
return string.Format( | ||
CultureInfo.CurrentCulture, | ||
Strings.NameSpaceFormat, | ||
GetSourceName(), | ||
Strings.AvoidLongLinesName); | ||
} | ||
|
||
/// <summary> | ||
/// Retrieves the severity of the rule: error, warning or information. | ||
/// </summary> | ||
public override RuleSeverity GetSeverity() | ||
{ | ||
return RuleSeverity.Warning; | ||
} | ||
|
||
/// <summary> | ||
/// Gets the severity of the returned diagnostic record: error, warning, or information. | ||
/// </summary> | ||
/// <returns></returns> | ||
public DiagnosticSeverity GetDiagnosticSeverity() | ||
{ | ||
return DiagnosticSeverity.Warning; | ||
} | ||
|
||
/// <summary> | ||
/// Retrieves the name of the module/assembly the rule is from. | ||
/// </summary> | ||
public override string GetSourceName() | ||
{ | ||
return string.Format(CultureInfo.CurrentCulture, Strings.SourceName); | ||
} | ||
|
||
/// <summary> | ||
/// Retrieves the type of the rule, Builtin, Managed or Module. | ||
/// </summary> | ||
public override SourceType GetSourceType() | ||
{ | ||
return SourceType.Builtin; | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
$ruleName = "PSAvoidLongLines" | ||
|
||
$ruleSettings = @{ | ||
Enable = $true | ||
} | ||
$settings = @{ | ||
IncludeRules = @($ruleName) | ||
Rules = @{ $ruleName = $ruleSettings } | ||
} | ||
|
||
Describe "AvoidLongLines" { | ||
it 'Should be off by default' { | ||
$def = "a" * 500 | ||
$violations = Invoke-ScriptAnalyzer -ScriptDefinition $def | ||
$violations.Count | Should -Be 0 | ||
} | ||
|
||
it 'Should find a violation when a line is longer than 120 characters (no whitespace)' { | ||
$def = "a" * 125 | ||
$violations = Invoke-ScriptAnalyzer -ScriptDefinition $def -Settings $settings | ||
$violations.Count | Should -Be 1 | ||
thomasrayner marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
||
it 'Should find a violation when a line is longer than 120 characters (leading whitespace)' { | ||
$def = " " * 100 + "a" * 25 | ||
$violations = Invoke-ScriptAnalyzer -ScriptDefinition $def -Settings $settings | ||
$violations.Count | Should -Be 1 | ||
} | ||
|
||
it 'Should not find a violation for lines under 120 characters' { | ||
$def = "a" * 120 | ||
$violations = Invoke-ScriptAnalyzer -ScriptDefinition $def -Settings $settings | ||
$violations.Count | Should -Be 0 | ||
} | ||
|
||
it 'Should find a violation with a configured line length' { | ||
$ruleSettings.Add('LineLength', 10) | ||
$settings['Rules'] = @{ $ruleName = $ruleSettings } | ||
$def = "a" * 15 | ||
$violations = Invoke-ScriptAnalyzer -ScriptDefinition $def -Settings $settings | ||
$violations.Count | Should -Be 1 | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.