Skip to content

Commit e143d44

Browse files
committed
UPDATE: switch fflint.org to fflint.dev
1 parent a45d6db commit e143d44

File tree

11 files changed

+21
-21
lines changed

11 files changed

+21
-21
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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.dev/)
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/fflint/actions/workflows/release.yaml/badge.svg)](https://github.com/FileFormatInfo/fflint/actions/workflows/release.yaml)
@@ -15,11 +15,11 @@ fflint is a linter for file formats. Are your files:
1515

1616
Perfect for your CI/CD pipeline to make sure bad files don't get committed.
1717

18-
[**Documentation**](https://www.fflint.org/)
18+
[**Documentation**](https://www.fflint.dev/)
1919

2020
## Installation
2121

22-
The [latest releases](https://github.com/FileFormatInfo/fflint/releases/latest) are available on Github. [Detailed instructions](https://www.fflint.org/install.html).
22+
The [latest releases](https://github.com/FileFormatInfo/fflint/releases/latest) are available on Github. [Detailed instructions](https://www.fflint.dev/install.html).
2323

2424
## Usage
2525

@@ -34,7 +34,7 @@ fflint CMD [options...] files...
3434
* `files...` are the files to check
3535

3636
More:
37-
* Complete documentation is on [**www.fflint.org**](https://www.fflint.org)
37+
* Complete documentation is on [**www.fflint.dev**](https://www.fflint.dev)
3838
* Run `fflint help` to see a list of available commands
3939
* Run `--help` for any command to see options specific to that command. Example: `fflint svg --help`
4040

TODO.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
- [ ] doc: [svg role and title](https://www.smashingmagazine.com/2021/05/accessible-svg-patterns-comparison/)
44
- [ ] doc and README: share links
5-
- [ ] workflow: run fflint on the fflint.org website
5+
- [ ] workflow: run fflint on the fflint.dev website
66
- [ ] workflow: go test
77
- [ ] test without ./main.go
88
- [ ] shared/ImageFlags.go

cmd/docgen/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ func main() {
4949
var rootCmd = &cobra.Command{
5050
Use: "fflint",
5151
Short: "A linter to make sure your files are valid",
52-
Long: `See [www.fflint.org](https://www.fflint.org/) for detailed instructions`,
52+
Long: `See [www.fflint.dev](https://www.fflint.dev/) for detailed instructions`,
5353
}
5454

5555
shared.AddCommon(rootCmd)

cmd/fflint/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ func main() {
2020
var rootCmd = &cobra.Command{
2121
Use: "fflint",
2222
Short: "A linter to make sure your files are valid",
23-
Long: `See [www.fflint.org](https://www.fflint.org/) for detailed instructions`,
23+
Long: `See [www.fflint.dev](https://www.fflint.dev/) for detailed instructions`,
2424
Version: version,
2525
SilenceErrors: true,
2626
SilenceUsage: true,

cmd/mangen/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ func main() {
1515
var rootCmd = &cobra.Command{
1616
Use: "fflint",
1717
Short: "A linter to make sure your files are valid",
18-
Long: `See [www.fflint.org](https://www.fflint.org/) for detailed instructions`,
18+
Long: `See [www.fflint.dev](https://www.fflint.dev/) for detailed instructions`,
1919
}
2020

2121
shared.AddCommon(rootCmd)

cmd/online/assets/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ <h1>
1313
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.dev/">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>

cmd/online/assets/robots.txt

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
# robots.txt for fflint.org online API
1+
# robots.txt for fflint.dev online API
22
#
3-
# Just a single page, but feel free to index it!
3+
# everything is indexable!
44
#
55
User-Agent: *
6-
Allow: /
6+
Allow: /
7+
Disallow: /honeypot.txt

docs/_config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#
2-
# _config.yml for www.fflint.org
2+
# _config.yml for www.fflint.dev
33
#
44

55
collections:
66
commands:
77
output: true
88
exclude: [ "CNAME" ]
99
permalink: /blog/:year/:month/:day/:title/index.:output_ext
10-
production_url: https://www.fflint.org
10+
production_url: https://www.fflint.dev
1111
title: fflint
1212
kramdown:
1313
input: GFM

docs/files.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ This is useful if you are downloading or generating a file and do not need to st
4141

4242
Example:
4343
```
44-
curl --silent https://www.fflint.org/favicon.ico | fflint ico -
44+
curl --silent https://www.fflint.dev/favicon.ico | fflint ico -
4545
```
4646

4747
If you have a directory named `-` (i.e. a single dash), you can force non-stdin mode by prefixing it with `./`:

docs/robots.txt

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1+
# robots.txt for fflint.dev
12
#
2-
# robots.txt for fflint
3+
# Documentation for fflint: everything is indexable
34
#
4-
5-
Sitemap: https://www.fflint.org/sitemap.xml
6-
75
User-Agent: *
6+
Allow: /
87
Disallow: /honeypot.txt

testdata/xml.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ exec fflint xml --schema=siteindex.xsd siteindex.xml
1919
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2020
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9"
2121
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
22-
<url><loc>https://www.fflint.org/index.html</loc></url>
23-
<url><loc>https://www.fflint.org/faq.html</loc></url>
22+
<url><loc>https://www.fflint.dev/index.html</loc></url>
23+
<url><loc>https://www.fflint.dev/faq.html</loc></url>
2424
</urlset>
2525

2626
-- siteindex.xml --

0 commit comments

Comments
 (0)