javascript - Modifying the default syntax formatting of the Babel-Sublime package -
i have downloaded , started using babel-sublime text formatting package in sublime text 3 projects.
i trying find out if , how can change formatting behaviors i'm not happy with. example, array literal formatting like:
this.state = { nodes: [ {x: 0.05, y: 0.05}, {x: 0.2, y: 0.2}, {x: 0.2, y: 0.8}, {x: 0.3, y: 0.2}, {x: 0.9, y: 0.2} ] }
where array elements indented square brackets, or:
render() { return ( <node /> ) }
where i'd closing paren line return statement.
are modifications possible?
Comments
Post a Comment