Changes between Initial Version and Version 1 of Rules/ValidatingBuildingsInHOTTMProjects


Ignore:
Timestamp:
2022-11-24T11:45:13+01:00 (3 years ago)
Author:
Patrik_B
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Rules/ValidatingBuildingsInHOTTMProjects

    v1 v1  
     1meta
     2{
     3  title: "Validating buildings in HOT TM projects";
     4  version: "23-11-2022";
     5  description: "Few rules for checking mistakes on buildings that are usually made by beginners using ID Editor.";
     6  author: "Patrik_B";
     7}
     8
     9
     10/*
     11* building with layer tag
     12*/
     13*[building][layer]{
     14throwWarning: tr("Building has layer tag");
     15fixRemove: "layer";
     16group: tr("_Fix");
     17}
     18
     19/*
     20* building with different tag then yes
     21*/
     22*[building][building!=yes]{
     23throwWarning: tr("Building has different tag then yes");
     24fixRemove: "building";
     25fixAdd: "building=yes";
     26group: tr("_Fix");
     27}