mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-28 00:08:42 +00:00
16 lines
393 B
Python
16 lines
393 B
Python
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# vim: set filetype=python:
|
|
|
|
LINTER = {
|
|
'name': "StringLinter",
|
|
'description': "Make sure the string 'foobar' never appears "
|
|
"in browser js files because it is bad.",
|
|
'rule': 'no-foobar',
|
|
'include': [
|
|
'**/*.js',
|
|
'**/*.jsm',
|
|
],
|
|
'type': 'string',
|
|
'payload': 'foobar',
|
|
}
|