fix(dev/ci): pre-commit fixes galore (#32352)

This commit is contained in:
Evan Rusackas
2025-02-24 11:26:45 -07:00
committed by GitHub
parent c583eec4c7
commit 90651dfe3e
91 changed files with 3435 additions and 2142 deletions

View File

@@ -1,3 +1,4 @@
/* eslint-env node */
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
@@ -39,42 +40,52 @@ const sidebars = {
{
type: 'category',
label: 'Installation',
items: [{
type: 'autogenerated',
dirName: 'installation',
}]
items: [
{
type: 'autogenerated',
dirName: 'installation',
},
],
},
{
type: 'category',
label: 'Configuration',
items: [{
type: 'autogenerated',
dirName: 'configuration',
}]
items: [
{
type: 'autogenerated',
dirName: 'configuration',
},
],
},
{
type: 'category',
label: 'Using Superset',
items: [{
type: 'autogenerated',
dirName: 'using-superset',
}]
items: [
{
type: 'autogenerated',
dirName: 'using-superset',
},
],
},
{
type: 'category',
label: 'Contributing',
items: [{
type: 'autogenerated',
dirName: 'contributing',
}]
items: [
{
type: 'autogenerated',
dirName: 'contributing',
},
],
},
{
type: 'category',
label: 'Security',
items: [{
type: 'autogenerated',
dirName: 'security',
}]
items: [
{
type: 'autogenerated',
dirName: 'security',
},
],
},
{
type: 'doc',
@@ -87,7 +98,6 @@ const sidebars = {
id: 'api',
},
],
};
module.exports = sidebars;