this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Reduce diff noise for .po changes

+6 -1
+3
.gitattributes
··· 1 1 *.po linguist-generated 2 2 readme-assets/** linguist-documentation 3 + 4 + # Diff PO file, ignore line number changes, reduce diff noise 5 + src/locales/en.po diff=po-filter
+1
README.md
··· 126 126 - `npm run fetch-instances` - Fetch instances list from [joinmastodon.org/servers](https://joinmastodon.org/servers), save it to `src/data/instances.json` 127 127 - `npm run sourcemap` - Run `source-map-explorer` on the production build 128 128 - `npm run messages:extract` - Extract messages from source files and update the locale message catalogs 129 + - `npm run git:po-filter` - Configure `git` to use `po-filter` for diffing `.po` files 129 130 130 131 ## Tech stack 131 132
+2 -1
package.json
··· 17 17 "test": "playwright test", 18 18 "test:ui": "playwright test --ui", 19 19 "test:headed": "playwright test --headed", 20 - "formatting-check": "npx biome check" 20 + "formatting-check": "npx biome check", 21 + "git:po-filter": "git config --local diff.po-filter.textconv \"sed 's/:[0-9]*$//'\"" 21 22 }, 22 23 "dependencies": { 23 24 "@formatjs/intl-localematcher": "~0.6.1",