-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from h1alexbel/31
feat(#31): unknown-metas lint
- Loading branch information
Showing
3 changed files
with
127 additions
and
0 deletions.
There are no files selected for viewing
48 changes: 48 additions & 0 deletions
48
src/main/resources/org/eolang/lints/metas/unknown-metas.xsl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
The MIT License (MIT) | ||
Copyright (c) 2016-2024 Objectionary.com | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included | ||
in all copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
--> | ||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" id="unknown-metas" version="2.0"> | ||
<xsl:output encoding="UTF-8" method="xml"/> | ||
<xsl:template match="/"> | ||
<defects> | ||
<xsl:for-each select="/program/metas/meta"> | ||
<xsl:variable name="meta-head" select="head"/> | ||
<xsl:variable name="predefined" select="('package', 'alias', 'version', 'tests', 'rt', 'architect', 'home', 'unlint', 'probe')"/> | ||
<xsl:if test="not($meta-head = $predefined)"> | ||
<xsl:element name="defect"> | ||
<xsl:attribute name="line"> | ||
<xsl:value-of select="if (@line) then @line else '0'"/> | ||
</xsl:attribute> | ||
<xsl:attribute name="severity"> | ||
<xsl:text>warning</xsl:text> | ||
</xsl:attribute> | ||
<xsl:text>Unknown meta used "</xsl:text> | ||
<xsl:value-of select="$meta-head"/> | ||
<xsl:text>"</xsl:text> | ||
</xsl:element> | ||
</xsl:if> | ||
</xsl:for-each> | ||
</defects> | ||
</xsl:template> | ||
</xsl:stylesheet> |
36 changes: 36 additions & 0 deletions
36
src/main/resources/org/eolang/motives/metas/unknown-metas.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Unknown Metas | ||
|
||
The following metas are supported: | ||
|
||
* `+package` | ||
* `+alias` | ||
* `+version` | ||
* `+tests` | ||
* `+rt` | ||
* `+architect` | ||
* `+home` | ||
* `+unlint` | ||
* `+probe` | ||
|
||
Incorrect: | ||
|
||
```eo | ||
+foo | ||
+bar | ||
[] > foo | ||
``` | ||
|
||
Correct: | ||
|
||
```eo | ||
+package com.test | ||
+alias foo | ||
+version 0.0.0 | ||
+architect [email protected] | ||
+rt jvm | ||
+home https://earth.com | ||
+unlint unsorted-metas | ||
[] > foo | ||
``` |
43 changes: 43 additions & 0 deletions
43
src/test/resources/org/eolang/lints/eo-packs/catches-unknown-metas.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# The MIT License (MIT) | ||
# | ||
# Copyright (c) 2016-2024 Objectionary.com | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to deal | ||
# in the Software without restriction, including without limitation the rights | ||
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
# copies of the Software, and to permit persons to whom the Software is | ||
# furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included | ||
# in all copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
# SOFTWARE. | ||
--- | ||
xsls: | ||
- /org/eolang/lints/metas/unknown-metas.xsl | ||
tests: | ||
- /defects[count(defect[@severity='warning'])=3] | ||
- /defects/defect[@line='1'] | ||
- /defects/defect[@line='2'] | ||
- /defects/defect[@line='3'] | ||
eo: | | ||
+foo | ||
+bar | ||
+bad | ||
+package test | ||
+alias foo | ||
+version 0.0.0 | ||
+architect [email protected] | ||
+rt node | ||
+home https://earth.com | ||
+unlint test | ||
+probe | ||
[] > foo |