예제 #1
0
파일: rst.py 프로젝트: pombredanne/vvv
    def __init__(self):
        Plugin.__init__(self)

        #: Path to the virtual env location
        self.virtualenv = None

        #: Location of virtualenv.py if operating system cannot supply working one
        self.virtualenv_cmd = None
예제 #2
0
파일: rst.py 프로젝트: osvalr/vvv
    def __init__(self):
        Plugin.__init__(self)

        #: Path to the virtual env location
        self.virtualenv = None

        #: Location of virtualenv.py if operating system cannot supply working one
        self.virtualenv_cmd = None

        #: Configuration file option
        self.python3k = None
예제 #3
0
파일: jshint.py 프로젝트: mbra/vvv
    def __init__(self):

        Plugin.__init__(self)

        #: Configuration file Text
        self.configuration = None

        #: Commandl line options passed to the validator from the config file
        self.extra_options = None

        #: Where jshint has been installed via npm
        self.jshint_path = None 
예제 #4
0
파일: jshint.py 프로젝트: osvalr/vvv
    def __init__(self):

        Plugin.__init__(self)

        #: Configuration file Text
        self.configuration = None

        #: Commandl line options passed to the validator from the config file
        self.extra_options = None

        #: Where jshint has been installed via npm
        self.jshint_path = None
예제 #5
0
파일: pyflakes.py 프로젝트: osvalr/vvv
    def __init__(self):

        Plugin.__init__(self)

        #: Configuration file option
        self.extra_options = None

        #: Virtualenv path used to run pyflakes
        self.virtualenv = None

        #: Configuration file option
        self.host_python = None

        #: Configuration file option
        self.paflakes_command = None

        #: Location of virtualenv.py if operating system cannot supply working one
        self.virtualenv_cmd = None
예제 #6
0
파일: zptlint.py 프로젝트: akheron/vvv
    def __init__(self):

        Plugin.__init__(self)

        #: Configuration file option
        self.extra_options = None

        #: Virtualenv path used to run zptlint
        self.virtualenv = None

        #: Configuration file option
        self.host_python = None

        #: Configuration file option
        self.paflakes_command = None

        #: Location of virtualenv.py if operating system cannot supply working one
        self.virtualenv_cmd = None
예제 #7
0
    def __init__(self):

        Plugin.__init__(self)

        #: Commandl line options passed to the validator from the config file
        self.extra_options = None
예제 #8
0
파일: css.py 프로젝트: akheron/vvv
    def __init__(self):

        Plugin.__init__(self)

        #: Commandl line options passed to the validator from the config file
        self.extra_options = None