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

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -