Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
fetch-depth: 0

- name: Super-linter
uses: super-linter/super-linter@v7.1.0 # x-release-please-version
uses: super-linter/super-linter@v8.3.1 # x-release-please-version
env:
# To report GitHub Actions status checks
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -46,5 +46,7 @@ jobs:
VALIDATE_LATEX: false
FIX_YAML_PRETTIER: true
VALIDATE_JAVASCRIPT_PRETTIER: false
VALIDATE_JAVASCRIPT_STANDARD: false
VALIDATE_JAVASCRIPT_ES: false
VALIDATE_SQLFLUFF: false
VALIDATE_BIOME_FORMAT: false
VALIDATE_GITHUB_ACTIONS_ZIZMOR: false
2 changes: 1 addition & 1 deletion js/source/modules/wizard-datasets.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export function WizardDatasets(main_id,wizard){
var val = main.select(".wizard-dataset-select").node().value;
if(val!=""){
var dataset = datasets.getDataset(val);
var details = '';
var details = "";
dataset.category_order.forEach(function(cat) {
var contents = dataset.categories[cat];
if(contents) {
Expand Down