# -*- coding: utf-8 -*- # objective-j.py - Lint checking for Objective-J - given filename and contents of the code: # It provides a list of line numbers to outline and offsets to highlight. # # This specific module is part of the SublimeLinter project. # It is a fork of the original SublimeLint project, # (c) 2011 Ryan Hileman and licensed under the MIT license. # URL: http://bochs.info/ # # The original copyright notices for this file/project follows: # # (c) 2005-2008 Divmod, Inc. # See LICENSE file for details # # The LICENSE file is as follows: # # Copyright (c) 2005 Divmod, Inc., http://www.divmod.com/ # # 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. # from capp_lint import LintChecker from base_linter import BaseLinter CONFIG = { 'language': 'Objective-J' } class Linter(BaseLinter): def built_in_check(self, view, code, filename): checker = LintChecker(view) checker.lint_text(code, filename) return checker.errors def parse_errors(self, view, errors, lines, errorUnderlines, violationUnderlines, warningUnderlines, errorMessages, violationMessages, warningMessages): for error in errors: lineno = error['lineNum'] self.add_message(lineno, lines, error['message'], errorMessages if type == LintChecker.ERROR_TYPE_ILLEGAL else warningMessages) for position in error.get('positions', []): self.underline_range(view, lineno, position, errorUnderlines if type == LintChecker.ERROR_TYPE_ILLEGAL else warningUnderlines)