[javascriptlint-commit] SF.net SVN: javascriptlint: [186] trunk
Status: Beta
Brought to you by:
matthiasmiller
|
From: <mat...@us...> - 2008-04-02 14:26:01
|
Revision: 186
http://javascriptlint.svn.sourceforge.net/javascriptlint/?rev=186&view=rev
Author: matthiasmiller
Date: 2008-04-02 07:25:55 -0700 (Wed, 02 Apr 2008)
Log Message:
-----------
Add comments for vim modelines.
Modified Paths:
--------------
trunk/jsl.py
trunk/pyjsl/__init__.py
trunk/pyjsl/conf.py
trunk/pyjsl/jsparse.py
trunk/pyjsl/lint.py
trunk/pyjsl/util.py
trunk/pyjsl/visitation.py
trunk/pyjsl/warnings.py
trunk/pyspidermonkey/pyspidermonkey.c
trunk/setup.py
trunk/test.py
Modified: trunk/jsl.py
===================================================================
--- trunk/jsl.py 2008-04-01 01:54:10 UTC (rev 185)
+++ trunk/jsl.py 2008-04-02 14:25:55 UTC (rev 186)
@@ -1,4 +1,5 @@
#!/usr/bin/python
+# vim: ts=4 sw=4 expandtab
import codecs
import glob
import os
Modified: trunk/pyjsl/__init__.py
===================================================================
--- trunk/pyjsl/__init__.py 2008-04-01 01:54:10 UTC (rev 185)
+++ trunk/pyjsl/__init__.py 2008-04-02 14:25:55 UTC (rev 186)
@@ -0,0 +1,2 @@
+# vim: ts=4 sw=4 expandtab
+
Modified: trunk/pyjsl/conf.py
===================================================================
--- trunk/pyjsl/conf.py 2008-04-01 01:54:10 UTC (rev 185)
+++ trunk/pyjsl/conf.py 2008-04-02 14:25:55 UTC (rev 186)
@@ -1,3 +1,4 @@
+# vim: ts=4 sw=4 expandtab
import os
import warnings
Modified: trunk/pyjsl/jsparse.py
===================================================================
--- trunk/pyjsl/jsparse.py 2008-04-01 01:54:10 UTC (rev 185)
+++ trunk/pyjsl/jsparse.py 2008-04-02 14:25:55 UTC (rev 186)
@@ -1,4 +1,5 @@
#!/usr/bin/python
+# vim: ts=4 sw=4 expandtab
""" Parses a script into nodes. """
import bisect
import re
Modified: trunk/pyjsl/lint.py
===================================================================
--- trunk/pyjsl/lint.py 2008-04-01 01:54:10 UTC (rev 185)
+++ trunk/pyjsl/lint.py 2008-04-02 14:25:55 UTC (rev 186)
@@ -1,4 +1,5 @@
#!/usr/bin/python
+# vim: ts=4 sw=4 expandtab
import os.path
import re
Modified: trunk/pyjsl/util.py
===================================================================
--- trunk/pyjsl/util.py 2008-04-01 01:54:10 UTC (rev 185)
+++ trunk/pyjsl/util.py 2008-04-02 14:25:55 UTC (rev 186)
@@ -1,3 +1,4 @@
+# vim: ts=4 sw=4 expandtab
import codecs
import os.path
Modified: trunk/pyjsl/visitation.py
===================================================================
--- trunk/pyjsl/visitation.py 2008-04-01 01:54:10 UTC (rev 185)
+++ trunk/pyjsl/visitation.py 2008-04-02 14:25:55 UTC (rev 186)
@@ -1,3 +1,4 @@
+# vim: ts=4 sw=4 expandtab
""" This is an abstract module for visiting specific nodes. This is useed to
traverse the tree to generate warnings.
"""
Modified: trunk/pyjsl/warnings.py
===================================================================
--- trunk/pyjsl/warnings.py 2008-04-01 01:54:10 UTC (rev 185)
+++ trunk/pyjsl/warnings.py 2008-04-02 14:25:55 UTC (rev 186)
@@ -1,3 +1,4 @@
+# vim: ts=4 sw=4 expandtab
""" This module contains all the warnings. To add a new warning, define a
class. Its name should be in lowercase and words should be separated by
underscores. Its docstring should be the warning message.
Modified: trunk/pyspidermonkey/pyspidermonkey.c
===================================================================
--- trunk/pyspidermonkey/pyspidermonkey.c 2008-04-01 01:54:10 UTC (rev 185)
+++ trunk/pyspidermonkey/pyspidermonkey.c 2008-04-02 14:25:55 UTC (rev 186)
@@ -1,4 +1,4 @@
-
+/* vim: ts=4 sw=4 expandtab */
#include <Python.h>
#include <js_operating_system.h>
Modified: trunk/setup.py
===================================================================
--- trunk/setup.py 2008-04-01 01:54:10 UTC (rev 185)
+++ trunk/setup.py 2008-04-02 14:25:55 UTC (rev 186)
@@ -1,4 +1,5 @@
#!/usr/bin/python
+# vim: ts=4 sw=4 expandtab
from distutils.core import setup, Extension
import os
Modified: trunk/test.py
===================================================================
--- trunk/test.py 2008-04-01 01:54:10 UTC (rev 185)
+++ trunk/test.py 2008-04-02 14:25:55 UTC (rev 186)
@@ -1,3 +1,4 @@
+# vim: ts=4 sw=4 expandtab
import re
import pyjsl.conf
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|