-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add format and format-all tasks to grunt
`grunt format` now runs js-beautify and sortImports on all js files in a given repo (or the current one if none is given). In addition, you can use `grunt format --verify` to just check that the files are formatted, but not actually modify them. This could be useful for a pre-commit hook. The `grunt format-all` variation is similar to lint-all in that it runs format on all the repos that are libraries of the supplied repo.
- Loading branch information
Showing
4 changed files
with
118 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
// Copyright 2020, Nick Crews | ||
|
||
/** | ||
* Runs the formatting rules on the specified files. | ||
* | ||
* @author @NickCrews | ||
*/ | ||
|
||
'use strict'; | ||
|
||
// modules | ||
const beautify = require( 'js-beautify' ); | ||
const fs = require( 'fs' ); | ||
const grunt = require( 'grunt' ); | ||
const sortImports = require( './sortImports' ); | ||
|
||
const OPTIONS = { | ||
"html": { | ||
"allowed_file_extensions": [ "htm", "html", "xhtml", "shtml", "xml", "svg" ], | ||
"brace_style": "collapse", | ||
"end_with_newline": false, | ||
"indent_char": " ", | ||
"indent_handlebars": false, | ||
"indent_inner_html": false, | ||
"indent_size": 2, | ||
"indent_scripts": "keep", | ||
"max_preserve_newlines": 1, | ||
"preserve_newlines": true, | ||
"unformatted": [ "a", "span", "img", "code", "pre", "sub", "sup", "em", "strong", "b", "i", "u", "strike", "big", "small", "pre", "h1", "h2", "h3", "h4", "h5", "h6" ], | ||
"wrap_line_length": 0 | ||
}, | ||
"css": { | ||
"allowed_file_extensions": [ "css", "scss", "sass", "less" ], | ||
"end_with_newline": false, | ||
"newline_between_rules": true, | ||
"indent_char": " ", | ||
"indent_size": 2, | ||
"selector_separator": " ", | ||
"selector_separator_newline": true | ||
}, | ||
"js": { | ||
"allowed_file_extensions": [ "js", "json", "jshintrc", "jsbeautifyrc", "sublime-settings" ], | ||
"brace_style": "collapse-preserve-inline", | ||
"break_chained_methods": false, | ||
"e4x": false, | ||
"end_with_newline": true, | ||
"indent_char": " ", | ||
"indent_level": 0, | ||
"indent_size": 2, | ||
"indent_with_tabs": false, | ||
"jslint_happy": false, | ||
"keep_array_indentation": false, | ||
"keep_function_indentation": false, | ||
"max_preserve_newlines": 0, | ||
"preserve_newlines": true, | ||
"space_after_anon_function": false, | ||
"space_before_conditional": true, | ||
"space_in_empty_paren": false, | ||
"space_in_paren": true, | ||
"unescape_strings": false, | ||
"wrap_line_length": 0 | ||
} | ||
} | ||
|
||
function formatFile( absPath, verifyOnly = false ) { | ||
let before = fs.readFileSync( absPath, 'utf-8' ); | ||
const formatted = beautify.js( before, OPTIONS ); | ||
if ( !verifyOnly ){ | ||
fs.writeFileSync( absPath, formatted, 'utf-8' ); | ||
} | ||
const alreadySorted = sortImports( absPath, verifyOnly ); | ||
return alreadySorted && ( before == formatted ); | ||
} | ||
|
||
/** | ||
* Formats the specified repositories. | ||
* @public | ||
* | ||
* @param {Array.<string>} repos | ||
* @param {boolean} verifyOnly - Don't rewrite files | ||
*/ | ||
module.exports = function( repos, verifyOnly = false) { | ||
|
||
repos.forEach( repo => { | ||
grunt.file.recurse( | ||
`../${repo}/js`, | ||
absPath => formatFile( absPath, verifyOnly ) | ||
) } ); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters