prettier/index.js

58 lines
1.3 KiB
JavaScript
Raw Normal View History

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 = {
sourceType: 'module',
allowImportExportEverywhere: false,
allowReturnOutsideFunction: false,
plugins: [
'asyncFunctions',
'asyncGenerators',
'classConstructorCall',
'classProperties',
'decorators',
'doExpressions',
'exponentiationOperator',
'exportExtensions',
'flow',
'functionSent',
'functionBind',
'jsx',
'objectRestSpread',
'trailingFunctionCommas'
]
};
module.exports = {
format: function(text, opts={}) {
let ast;
2016-11-29 23:23:00 +03:00
if(opts.useFlowParser) {
ast = flowParser.parse(text);
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;
}
throw new Error(msg);
2016-12-30 21:32:43 +03:00
}
}
else {
ast = babylon.parse(text, babylonOptions);
2016-12-30 21:32:43 +03:00
}
2016-11-29 23:23:00 +03:00
// Interleave comment nodes
if(ast.comments) {
comments.attach(ast.comments, ast, text);
ast.comments = [];
}
ast.tokens = [];
opts.originalText = text;
const printer = new Printer(opts);
return printer.printGenerically(ast).code;
2016-11-29 23:23:00 +03:00
}
};