summaryrefslogtreecommitdiff
path: root/lib (follow)
Commit message (Collapse)AuthorAgeFilesLines
* various fixes to bugsstuebinm2021-11-285-83/+96
| | | | | | | | | | Among them - always set correct exit codes - refuse to write out files if the out path already exists - calculate the overall severity correctly - slightly changed the json output schema - also output the text output format in json - make the default config.json suitable for a production environment
* why oh why does the prelude contain unsafe functionsstuebinm2021-11-231-1/+1
| | | | some parts of haskell are really, really old …
* add a severity attribute to the json outputstuebinm2021-11-231-11/+16
|
* whoops, forgot to add a filestuebinm2021-11-201-0/+80
|
* make link adjustments configurablestuebinm2021-11-203-43/+48
| | | | | | this allows for creating custom URI "schemas" in the linter's config, which may be either allowed, prefixed, or translated according to some (domain-based) substitution.
* add domain allow- and blocklists for weblinksstuebinm2021-11-193-4/+29
| | | | | | (these use a rather crude regex for parsing, which may be possible to side-step, and which should probably be replaced by something that was actually written while following the relevant rfc)
* fix group layer handlingstuebinm2021-11-191-9/+22
| | | | we don't want to accidentally copy maps, whoopsie
* add lint for empty group layersstuebinm2021-11-191-0/+7
|
* deal with group layersstuebinm2021-11-192-9/+37
| | | | | I have no idea why these even exist, but apparently they do, so here's some code to deal with them in a hopefully useful manner …
* assorted lints for properties found in some mapsstuebinm2021-11-181-17/+56
| | | | | (mostly to do with the scripting API, but also some old ones which are already deprecated / not even mentioned in the documentation anymore)
* add warnings for as-yet unlinted layer propertiesstuebinm2021-11-171-0/+9
|
* small fixesstuebinm2021-11-171-8/+7
|
* make map parser work with more mapsstuebinm2021-11-172-7/+39
| | | | | I found yet more properties that weren't really documented or weren't marked as optional, hurray!
* map format: turns out more things are optionalstuebinm2021-11-171-6/+6
| | | | | | | | the unhelpfulness of the spec is slowly starting to grate … Anyways, apparently a lot more properties don't have to be present, and you find out by finding maps somewhere that work but currently fail the parser.
* exit with code 1 if maximum lint level exceededstuebinm2021-11-173-14/+25
|
* reject map urls starting with /_/stuebinm2021-11-161-3/+6
|
* add adjustment: add prefix for openWebsitestuebinm2021-11-162-2/+6
|
* disable print output when copying filesstuebinm2021-11-141-2/+2
| | | | (this would otherwise break the json schema if `--json` is given)
* config options: implement script-related optionsstuebinm2021-11-143-2/+20
|
* config: some small documentationstuebinm2021-11-141-0/+4
|
* config option: don't copy asset filesstuebinm2021-11-142-21/+27
|
* Functional jitsiRoomAdminTag adjustmentstuebinm2021-11-147-35/+54
| | | | also yet another typeclass™, because why not?
* add some simple config optionsstuebinm2021-11-141-9/+30
|
* too much type level stuff to read a config filestuebinm2021-11-141-0/+99
| | | | | | | | | This got kinda out of hand, but it can now (a) read a json config file and (b) patch that with another json given on the command line to change some of the options given in the file. No, I probably didn't need to make the `patch` function sufficiently general to work with arbitrary records, but it was kinda fun to do.
* fail on missing map assetsstuebinm2021-11-101-3/+8
| | | | (but not (yet?) on missing maps/entrypoints)
* copy map assets (and refuse if any are missing)stuebinm2021-11-102-22/+56
|
* extra module for repository writeoutstuebinm2021-11-103-10/+33
|
* remove dead codestuebinm2021-11-102-41/+11
| | | | | | | | (also fix some hlints) This removes some code that was apparently dead and I never noticed. I only noticed now since it wouldn't work with the newer versions of Aeson anymore.
* little code cleanupstuebinm2021-11-102-8/+6
|
* first example of a map adjustmentstuebinm2021-11-095-33/+81
| | | | | | | | | this also includes some more monad plumbing, and an option for the linter to actually write things out again. Some of the previous commit was reverted a bit since it turned out to be stupid, but overall it was suprisingly easy once I got around to it, so yay! i guess Also includes a fairly silly example of how to use it.
* monad plumbing to let the linter modify thingsstuebinm2021-11-022-14/+24
| | | | | | | I'm not sure if this is the right approach tbh — it lets the LintWriter monad modify its own context, but maybe we might run into cases where lints and modifications depend on each other across longer "distances" than just the context of the linter (i.e. just across a property?)
* better lint messagesstuebinm2021-10-301-10/+10
|
* turns out records are just sugarstuebinm2021-10-301-8/+2
| | | | | (and one that contains almost only mempty can be written much shorter than I thought it could)
* yet more tiled propertiesstuebinm2021-10-302-2/+6
|
* re-enable dependency checkingstuebinm2021-10-302-21/+22
|
* also flipping tileset lint output structurestuebinm2021-10-302-26/+36
|
* added more keys to the Tiled formatstuebinm2021-10-301-30/+51
| | | | (apparently, some of them aren't even in the spec, just the changelog!)
* readable prettyprint for inverted lint outputstuebinm2021-10-302-1/+5
| | | | the previous state was a hacky mess
* flipping the output map structurestuebinm2021-10-304-19/+49
| | | | | | | | for now, just with layers. Instead of listing by layer (and giving lints multiple times), list by lint type (and list all layers in which this lint was applicable). This is a bit wonky for now, but readability of output is much better.
* make aeson instances agree with themselvesstuebinm2021-10-303-198/+79
| | | | | | | | | | | | | | | | This cleans up all the old rubble that came from the Tiled package I originally took from hackage. It now uses generics instead of implementing all the ToJSON and FromJSON instances by hand, and (deserialize . serialise) will now actually return a (semantically) equivalent json. It'll now also reject keys that it doesn't know, which required adding some in several places which the tiled package didn't know about (or which were introduced after it was originally written, dunno). Several more Maybes are required now, to represent the difference between e.g. empty lists and on set value, which does make the code slightly weirder in other places …
* more sensible msg for "property required by"-lintsstuebinm2021-10-301-1/+8
| | | | | the previous state appears to have been an oversight and made no sense at all.
* add tileset property lintingstuebinm2021-10-304-16/+47
| | | | | | this reorganised the whole linting for tilesets somewhat; it's now very similar to that linting layers, and it may be possible to abstract some of the code away ...
* add warning for very large tileset imagesstuebinm2021-10-301-2/+3
|
* rename to walintstuebinm2021-10-013-44/+43
|
* check if assets existstuebinm2021-09-301-8/+40
|
* remove unused Maybestuebinm2021-09-301-4/+4
|
* nicer json output which leaks less haskell namesstuebinm2021-09-304-40/+56
|
* simple map-map link dependency checkingstuebinm2021-09-306-21/+106
| | | | | | | | This is purely based on a set difference, i.e. it won't catch stupid things like a map linking to itself, a map link going only one-way, etc. Also, it only handles map links; it doesn't check if all ressource files referenced by a map actually exist.
* prettier pretty printing and stuffstuebinm2021-09-234-37/+71
| | | | | also, configurable log level, which only required relaxing the type system once!
* some documentationstuebinm2021-09-232-5/+20
|