mirror of
https://github.com/roytam1/UXP.git
synced 2026-05-27 21:38:34 +00:00
15 lines
365 B
Plaintext
15 lines
365 B
Plaintext
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
|
|
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',
|
|
}
|