Skip to content
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

Remove linter dependency after cleaning up existing issues. #30

Merged
merged 2 commits into from Mar 19, 2020
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Next

Fix lint warnings

  • Loading branch information
fmarier committed Mar 19, 2020
commit 3eb1e6ae34c4643bd20999f3e42112fbfbda0461
@@ -98,10 +98,10 @@ const buildDataFiles = buffer => {
}

for (const target of ruleset.target) {
if (!jsonOutput['targets'][target]) {
jsonOutput['targets'][target] = []
if (!jsonOutput.targets[target]) {
jsonOutput.targets[target] = []
}
jsonOutput['targets'][target].push(jsonOutput['rulesetStrings'].length)
jsonOutput.targets[target].push(jsonOutput.rulesetStrings.length)
}

const r = {
@@ -124,7 +124,7 @@ const buildDataFiles = buffer => {
})
}

jsonOutput['rulesetStrings'].push(r)
jsonOutput.rulesetStrings.push(r)
}
}

ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.