Skip to content

Commit 2c81c29

Browse files
authored
Merge pull request #5663 from plotly/plot-schema-indentation
Set indentation for plot-schema to 1
2 parents 88c7a86 + 2efe541 commit 2c81c29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/util/make_schema.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ module.exports = function makeSchema(plotlyPath, schemaPath) {
1717
w.eval(plotlyjsCode);
1818

1919
var plotSchema = w.Plotly.PlotSchema.get();
20-
var plotSchemaStr = JSON.stringify(plotSchema, null, 4);
20+
var plotSchemaStr = JSON.stringify(plotSchema, null, 1);
2121
fs.writeFileSync(schemaPath, plotSchemaStr);
2222

2323
console.log('ok ' + path.basename(schemaPath));

0 commit comments

Comments
 (0)