-
-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c32aa8f
commit 21345c8
Showing
8 changed files
with
136 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 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 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,14 @@ | ||
# unused_variable | ||
## What it does | ||
Checks for variables that are unscoped (don't have a local variable attached). | ||
|
||
## Why this is bad | ||
Unscoped variables make code harder to read and debug, as well as making it harder for selene to analyze. | ||
|
||
## Configuration | ||
`ignore_pattern` (default: `"^_"`) - A [regular expression](https://en.wikipedia.org/wiki/Regular_expression) for variables that are allowed to be unscoped. The default allows for variables like `_` to be unscoped, as they shouldn't be used anyway. | ||
|
||
## Example | ||
```lua | ||
baz = 3 | ||
``` |
This file contains 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 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 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,88 @@ | ||
use super::*; | ||
use crate::ast_util::scopes::ScopeManager; | ||
use std::collections::HashSet; | ||
|
||
use full_moon::ast::Ast; | ||
use regex::Regex; | ||
use serde::Deserialize; | ||
|
||
#[derive(Clone, Deserialize)] | ||
#[serde(default)] | ||
pub struct UnscopedVariablesConfig { | ||
ignore_pattern: String, | ||
} | ||
|
||
impl Default for UnscopedVariablesConfig { | ||
fn default() -> Self { | ||
Self { | ||
ignore_pattern: "^_".to_owned(), | ||
} | ||
} | ||
} | ||
|
||
pub struct UnscopedVariablesLint { | ||
ignore_pattern: Regex, | ||
} | ||
|
||
impl Rule for UnscopedVariablesLint { | ||
type Config = UnscopedVariablesConfig; | ||
type Error = regex::Error; | ||
|
||
fn new(config: Self::Config) -> Result<Self, Self::Error> { | ||
Ok(UnscopedVariablesLint { | ||
ignore_pattern: Regex::new(&config.ignore_pattern)?, | ||
}) | ||
} | ||
|
||
fn pass(&self, ast: &Ast, context: &Context) -> Vec<Diagnostic> { | ||
// ScopeManager repeats references, and I just don't want to fix it right now | ||
let mut read = HashSet::new(); | ||
|
||
let mut diagnostics = Vec::new(); | ||
let scope_manager = ScopeManager::new(ast); | ||
|
||
for (_, reference) in &scope_manager.references { | ||
if reference.resolved.is_none() | ||
&& reference.write | ||
&& !read.contains(&reference.identifier) | ||
&& !self.ignore_pattern.is_match(&reference.name) | ||
&& !context | ||
.standard_library | ||
.globals | ||
.contains_key(&reference.name) | ||
{ | ||
read.insert(reference.identifier); | ||
|
||
diagnostics.push(Diagnostic::new( | ||
"unscoped_variables", | ||
format!("`{}` is not declared locally, and will be available in every scope", reference.name), | ||
Label::new(reference.identifier), | ||
)); | ||
} | ||
} | ||
|
||
diagnostics | ||
} | ||
|
||
fn severity(&self) -> Severity { | ||
Severity::Warning | ||
} | ||
|
||
fn rule_type(&self) -> RuleType { | ||
RuleType::Complexity | ||
} | ||
} | ||
|
||
#[cfg(test)] | ||
mod tests { | ||
use super::{super::test_util::*, *}; | ||
|
||
#[test] | ||
fn test_unscoped_variables() { | ||
test_lint( | ||
UnscopedVariablesLint::new(UnscopedVariablesConfig::default()).unwrap(), | ||
"unscoped_variables", | ||
"unscoped_variables", | ||
); | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
selene-lib/tests/lints/unscoped_variables/unscoped_variables.lua
This file contains 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,14 @@ | ||
bar = true | ||
|
||
local foo = 1 | ||
foo = 2 | ||
|
||
local bar = 1 | ||
bar = 2 | ||
|
||
pcall(function() | ||
foo = 3 | ||
baz = 1 | ||
end) | ||
|
||
_ = 3 |
16 changes: 16 additions & 0 deletions
16
selene-lib/tests/lints/unscoped_variables/unscoped_variables.stderr
This file contains 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,16 @@ | ||
error[unscoped_variables]: `bar` is not declared locally, and will be available in every scope | ||
|
||
┌── unscoped_variables.lua:1:1 ─── | ||
│ | ||
1 │ bar = true | ||
│ ^^^ | ||
│ | ||
|
||
error[unscoped_variables]: `baz` is not declared locally, and will be available in every scope | ||
|
||
┌── unscoped_variables.lua:11:5 ─── | ||
│ | ||
11 │ baz = 1 | ||
│ ^^^ | ||
│ | ||
|