initial commit

This commit is contained in:
2025-03-08 19:29:14 +01:00
parent 18bfd99401
commit 1c66feaa2a
323 changed files with 20550 additions and 1 deletions

View File

@@ -0,0 +1 @@
3.8

View File

@@ -0,0 +1,11 @@
{
"@python": 3,
"linters": {
"flake8": {
"max-line-length": 120
},
"pep8": {
"max-line-length": 120
}
}
}

View File

@@ -0,0 +1,17 @@
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

View File

@@ -0,0 +1,65 @@
SublimeLinter-contrib-perl
==========================
This linter plugin for [SublimeLinter](https://github.com/SublimeLinter/SublimeLinter3) provides an interface to [perl](http://www.perl.org/). It will be used with files that have the "Perl" or "ModernPerl" syntax.
## Installation
SublimeLinter 3 must be installed in order to use this plugin. If SublimeLinter 3 is not installed, please follow the instructions [here](http://sublimelinter.readthedocs.org/en/latest/installation.html).
### Linter installation
Before using this plugin, you must ensure that `perl` is installed on your system. Perl may be downloaded [here](http://www.perl.org/get.html).
Once `perl` is installed, you must ensure it is in your system PATH so that SublimeLinter can find it. This may not be as straightforward as you think, so please read [How linter executables are located](http://sublimelinter.readthedocs.org/en/latest/usage.html#how-linter-executables-are-located) in the documentation.
Once you have installed `perl` you can proceed to install the SublimeLinter-contrib-perl plugin if it is not yet installed.
### Plugin installation
Please use [Package Control](https://sublime.wbond.net/installation) to install the linter plugin. This will ensure that the plugin will be updated when new versions are available. If you want to install from source so you can modify the source code, you probably know what you are doing so we wont cover that here.
To install via Package Control, do the following:
1. Within Sublime Text, bring up the [Command Palette](http://docs.sublimetext.info/en/sublime-text-3/extensibility/command_palette.html) and type `install`. Among the commands you should see `Package Control: Install Package`. If that command is not highlighted, use the keyboard or mouse to select it. There will be a pause of a few seconds while Package Control fetches the list of available plugins.
1. When the plugin list appears, type `perl`. Among the entries you should see `SublimeLinter-contrib-perl`. If that entry is not highlighted, use the keyboard or mouse to select it.
## Settings
For general information on how SublimeLinter works with settings, please see [Settings](http://sublimelinter.readthedocs.org/en/latest/settings.html). For information on generic linter settings, please see [Linter Settings](http://sublimelinter.readthedocs.org/en/latest/linter_settings.html).
In addition to the standard SublimeLinter settings, SublimeLinter-contrib-perl provides its own settings.
|Setting|Description|
|:------|:----------|
|include_dirs|A list of directories to be added to the module include search paths|
###Example
```json
...
"linters": {
"perl": {
"@disable": false,
"args": [],
"excludes": [],
"include_dirs": ["/path/to/my/project"]
},
...
```
## Contributing
If you would like to contribute enhancements or fixes, please do the following:
1. Fork the plugin repository.
1. Hack on a separate topic branch created from the latest `master`.
1. Commit and push the topic branch.
1. Make a pull request.
1. Be patient. ;-)
Please note that modications should follow these coding guidelines:
- Indent is 4 spaces.
- Code should pass flake8 and pep257 linters.
- Vertical whitespace helps readability, don't be afraid to use it.
- Please use descriptive variable names, no abbreviations unless they are very well known.
Thank you for helping out!

View File

@@ -0,0 +1,45 @@
#
# linter.py
# Linter for SublimeLinter3, a code checking framework for Sublime Text 3
#
# Written by Gregory Oschwald
# Copyright (c) 2013 Gregory Oschwald
#
# License: MIT
#
"""This module exports the Perl plugin class."""
import shlex
from SublimeLinter.lint import Linter, util
class Perl(Linter):
"""Provides an interface to perl -c."""
defaults = {
'selector': 'source.perl, source.modernperl'
}
executable = 'perl'
regex = r'(?P<message>.+?) at - line (?P<line>\d+)(, near "(?P<near>.+?)")?'
error_stream = util.STREAM_STDERR
def cmd(self):
"""
Return the command line to execute.
Overridden so we can add include paths based on the 'include_dirs'
settings.
"""
command = [self.executable_path, '-c']
include_dirs = self.get_view_settings().get('include_dirs', [])
for e in include_dirs:
command.append('-I')
command.append(shlex.quote(e))
return command

View File

@@ -0,0 +1,3 @@
{
"install": "messages/install.txt"
}

View File

@@ -0,0 +1,10 @@
SublimeLinter-contrib-perl
--------------------------
This linter plugin for SublimeLinter provides an interface to perl -c.
** IMPORTANT! **
Before this plugin will activate, you *must*
follow the installation instructions here:
https://github.com/oschwald/SublimeLinter-perl

View File

@@ -0,0 +1 @@
{"name": "SublimeLinter-contrib-perl", "version": "1.3.0", "sublime_text": ">=3000", "platforms": ["*"], "python_version": "3.3", "url": "https://github.com/oschwald/SublimeLinter-perl", "issues": "https://github.com/oschwald/SublimeLinter-perl/issues", "author": ["oschwald"], "description": "SublimeLinter plugin for perl -c", "labels": ["linting", "SublimeLinter", "perl"], "libraries": [], "install_time": 1725737038.33349, "release_time": "2018-05-06 01:49:06"}