12 lines
193 B
Python
Executable File
12 lines
193 B
Python
Executable File
#!/usr/bin/env python
|
|
"""
|
|
A linting tool to check for xss vulnerabilities.
|
|
"""
|
|
|
|
|
|
from __future__ import absolute_import
|
|
|
|
if __name__ == "__main__":
|
|
from xsslint.main import main
|
|
main()
|