Skip to content

Commit 8cf84c9

Browse files
committed
UPDATE: name should be all lowercase
1 parent bf132c7 commit 8cf84c9

32 files changed

Lines changed: 55 additions & 39 deletions

.github/ISSUE_TEMPLATE/bug.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ Expected output:
88

99
Actual output:
1010

11-
OS and FFLint versions:
11+
OS and fflint versions:
1212

1313
Please attach sample files needed to replicate

.github/workflows/dogfooding.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
- name: Generate reports
3939
run: |
40-
echo "# Dogfooding FFLint" >$GITHUB_STEP_SUMMARY
40+
echo "# Dogfooding fflint" >$GITHUB_STEP_SUMMARY
4141
echo "## Extensions in use" >>$GITHUB_STEP_SUMMARY
4242
./fflint ext --output=markdown "./**" >>$GITHUB_STEP_SUMMARY
4343
echo "" >>$GITHUB_STEP_SUMMARY

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# FFLint [<img alt="FFLint logo" src="docs/favicon.svg" height="90" align="right" />](https://www.fflint.org/)
1+
# fflint [<img alt="fflint logo" src="docs/favicon.svg" height="90" align="right" />](https://www.fflint.org/)
22

33
[![build](https://github.com/FileFormatInfo/fflint/actions/workflows/build.yaml/badge.svg)](https://github.com/FileFormatInfo/fflint/actions/workflows/build.yaml)
44
[![release](https://github.com/FileFormatInfo/fflintactions/workflows/release.yaml/badge.svg)](https://github.com/FileFormatInfo/fflint/actions/workflows/release.yaml)
55
[![dogfooding](https://github.com/FileFormatInfo/fflint/actions/workflows/dogfooding.yaml/badge.svg)](https://github.com/FileFormatInfo/fflint/actions/workflows/dogfooding.yaml)
66

7-
FFLint is a linter for file formats. Are your files:
7+
fflint is a linter for file formats. Are your files:
88
* in the correct format?
99
* with the correct extension?
1010
* with the correct image dimensions?

cmd/docgen/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ func main() {
9292
w := bufio.NewWriter(f)
9393
w.WriteString("---\n")
9494
w.WriteString(fmt.Sprintf("h1: The %s Command\n", cmdName))
95-
w.WriteString(fmt.Sprintf("title: '%s: %s - FFLint'\n", cmdName, c.Short))
95+
w.WriteString(fmt.Sprintf("title: '%s: %s - fflint'\n", cmdName, c.Short))
9696
w.WriteString(buf.String())
9797
w.WriteString("---\n")
9898
w.WriteString(noteLine)

cmd/fflint/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ func TestMain(m *testing.M) {
8080
os.Exit(exitVal)
8181
}
8282

83-
func TestFFLint(t *testing.T) {
83+
func Testfflint(t *testing.T) {
8484
testscript.Run(t, testscript.Params{
8585
Dir: "../../testdata",
8686
})

cmd/online/assets/favicon.ico

-15 Bytes
Binary file not shown.

cmd/online/assets/favicon.svg

Lines changed: 14 additions & 1 deletion
Loading

cmd/online/assets/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
<meta charset="utf-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<link rel="stylesheet" href="css/pico.min.css">
7-
<title>Online File Format Linting - FFLint</title>
7+
<title>Online File Format Linting - fflint</title>
88
</head>
99
<body>
1010
<main class="container">
1111
<h1>
1212
<img src="favicon.svg" style="width:28pt;height:28pt;margin-top:-4pt;margin-right:4pt;" />
13-
FFLint API
13+
fflint API
1414
</h1>
1515

16-
<p>A simple online service for <a href="https://www.fflint.org/">FFLint</a>, the file format linter.</p>
16+
<p>A simple online service for <a href="https://www.fflint.org/">fflint</a>, the file format linter.</p>
1717

1818
<p style="text-align:center"><small>A service of <a href="https://www.fileformat.info/">FileFormat.info</a></small></p>
1919
</main>

docs/_commands/ext.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
h1: The ext Command
3-
title: 'ext: Validate (or report) file extensions - FFLint'
3+
title: 'ext: Validate (or report) file extensions - fflint'
44
name: fflint ext
55
synopsis: Validate (or report) file extensions
66
description: Check and report on the file extensions in use

docs/_commands/frontmatter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
h1: The frontmatter Command
3-
title: 'frontmatter: Validate frontmatter - FFLint'
3+
title: 'frontmatter: Validate frontmatter - fflint'
44
name: fflint frontmatter
55
synopsis: Validate frontmatter
66
description: Checks that the frontmatter in your files is valid

0 commit comments

Comments
 (0)