mirror of
https://github.com/h5bp/html5-boilerplate.git
synced 2026-01-06 21:34:03 -05:00
- Allow CodeQL workflow to be run from GitHub Actions WebUI at any time - Set CodeQL to also check for best practises/code problems (as well as security) - Capitalize Publish GH Action - Change Windows Test workflow for consistent file extension (also means its formatted with Prettier) and remove leading empty linebreak - Run Prettier (maybe we should add this to build script to ensure all code is formatted?) - Change .gitattributes to have LF line-endings for more file types
24 lines
683 B
Plaintext
24 lines
683 B
Plaintext
# Automatically normalize line endings for all text-based files
|
|
# https://git-scm.com/docs/gitattributes#_end_of_line_conversion
|
|
|
|
* text=auto
|
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
# For the following file types, normalize line endings to LF on
|
|
# checkin and prevent conversion to CRLF when they are checked out
|
|
# (this is required in order to prevent newline related issues like,
|
|
# for example, after the build script is run)
|
|
|
|
.* text eol=lf
|
|
*.css text eol=lf
|
|
*.html text eol=lf
|
|
*.js text eol=lf
|
|
*.json text eol=lf
|
|
*.md text eol=lf
|
|
*.mjs text eol=lf
|
|
*.sh text eol=lf
|
|
*.txt text eol=lf
|
|
*.xml text eol=lf
|
|
*.yml text eol=lf
|