コード例 #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