mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-27 20:18:32 +00:00
14 lines
310 B
Python
14 lines
310 B
Python
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# vim: set filetype=python:
|
|
|
|
LINTER = {
|
|
'name': "ExplicitPathLinter",
|
|
'description': "Only lint a specific file name",
|
|
'rule': 'no-foobar',
|
|
'include': [
|
|
'no_foobar.js',
|
|
],
|
|
'type': 'string',
|
|
'payload': 'foobar',
|
|
}
|