lukaskalbertodt/Check basic style
Check basic file properties like UTF-8 encoding, trailing whitespace, a max line length, ...
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
- Runtime
- Deprecated runtime
Inputs
| name | description | required | default |
|---|---|---|---|
| files | List of files to check. Supports wildcards. For more information on the allowed patterns, see: https://www.npmjs.com/package/glob | no | **/!(*.md) |
| check_generated_files | By default, some files like 'Cargo.lock', 'package-lock.json', ... are not checked. Setting this to `true` disables this ignoring. | no | false |
| single_trailing_newline | Make sure files end with a single trailing newline | no | true |
| no_trailing_whitespace | Make sure there is no whitespace at the very end of a line | no | true |
| max_line_len | The maximum number of Unicode code points a line may have. Set to -1 to disable check. | no | 100 |
| allow_long_lines_with_urls | Lines longer than 'max_line_len' are allowed if they contain something that looks like a "common" URL. Not all of URL syntax is allowed, just common cases. | no | true |
| no_tabs | Disallow any tab characters ('\t') anywhere | no | true |
Outputs
no outputs