You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?xml version="1.0" encoding="UTF-8" ?>
- <!--
- Copyright 2020 Tecnativa - Víctor Martínez
- License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
- -->
- <odoo>
- <record id="github_analysis_rule_python" model="github.analysis.rule">
- <field name="name">Python files</field>
- <field name="group_id" ref="github_analysis_rule_group_1_demo" />
- <field name="paths">*.py</field>
- </record>
- <record id="github_analysis_rule_xml" model="github.analysis.rule">
- <field name="name">XML files</field>
- <field name="group_id" ref="github_analysis_rule_group_1_demo" />
- <field name="paths">*.xml</field>
- </record>
- <record id="github_analysis_rule_js" model="github.analysis.rule">
- <field name="name">JS files</field>
- <field name="group_id" ref="github_analysis_rule_group_1_demo" />
- <field name="paths">*.js</field>
- </record>
- <record id="github_analysis_rule_test" model="github.analysis.rule">
- <field name="name">Test files</field>
- <field name="group_id" ref="github_analysis_rule_group_1_demo" />
- <field name="paths">/tests/*.py</field>
- </record>
- </odoo>
|