prettier/index.js

76 lines
1.7 KiB
JavaScript
Raw Normal View History

2017-01-10 20:18:22 +03:00
"use strict";
2016-11-29 23:23:00 +03:00
const babylon = require("babylon");
const Printer = require("./src/printer").Printer;
const flowParser = require("flow-parser");
const comments = require("./src/comments");
2016-11-29 23:23:00 +03:00
var babylonOptions = {
2017-01-13 23:03:53 +03:00
sourceType: "module",
2016-11-29 23:23:00 +03:00
allowImportExportEverywhere: false,
allowReturnOutsideFunction: false,
plugins: [
2017-01-13 23:03:53 +03:00
"jsx",
"flow",
"doExpressions",
"objectRestSpread",
"decorators",
"classProperties",
"exportExtensions",
"asyncGenerators",
"functionBind",
"functionSent",
"dynamicImport"
2016-11-29 23:23:00 +03:00
]
};
function format(text, opts) {
opts = opts || {};
let ast;
2017-01-13 23:03:53 +03:00
if (opts.useFlowParser) {
ast = flowParser.parse(text, {
esproposal_class_instance_fields: true,
esproposal_class_static_fields: true,
esproposal_export_star_as: true,
});
2017-01-13 23:03:53 +03:00
if (ast.errors.length > 0) {
let msg = ast.errors[(0)].message + " on line " +
ast.errors[(0)].loc.start.line;
if (opts.filename) {
msg += " in file " + opts.filename;
2016-12-30 21:32:43 +03:00
}
throw new Error(msg);
}
2017-01-13 23:03:53 +03:00
} else {
ast = babylon.parse(text, babylonOptions);
}
2016-11-29 23:23:00 +03:00
// Interleave comment nodes
2017-01-13 23:03:53 +03:00
if (ast.comments) {
comments.attach(ast.comments, ast, text);
ast.comments = [];
}
ast.tokens = [];
opts.originalText = text;
const printer = new Printer(opts);
return printer.print(ast);
}
function formatWithShebang(text, opts) {
if (!text.startsWith("#!")) {
return format(text, opts);
}
const index = text.indexOf("\n");
const shebang = text.slice(0, index + 1);
const programText = text.slice(index + 1);
return shebang + format(programText, opts);
}
module.exports = {
format: function(text, opts) {
return formatWithShebang(text, opts);
2016-11-29 23:23:00 +03:00
}
};