gopkg.in/alecthomas/gometalinter.v3@v3.0.0/_linters/src/github.com/client9/misspell/legal.go (about)

     1  package misspell
     2  
     3  // Legal provides licensing info.
     4  const Legal = `
     5  Execept where noted below, the source code for misspell is
     6  copyright Nick Galbreath and distribution is allowed under a
     7  MIT license.  See the following for details:
     8  
     9  * https://github.com/client9/misspell/blob/master/LICENSE
    10  * https://tldrlegal.com/license/mit-license 
    11  
    12  Misspell makes uses of the Golang standard library and 
    13  contains a modified version of Golang's strings.Replacer
    14  which are covered under a BSD License.
    15  
    16  * https://golang.org/pkg/strings/#Replacer
    17  * https://golang.org/src/strings/replace.go
    18  * https://github.com/golang/go/blob/master/LICENSE
    19  
    20  Copyright (c) 2009 The Go Authors. All rights reserved.
    21  
    22  Redistribution and use in source and binary forms, with or without
    23  modification, are permitted provided that the following conditions are
    24  met:
    25  
    26     * Redistributions of source code must retain the above copyright
    27  notice, this list of conditions and the following disclaimer.
    28     * Redistributions in binary form must reproduce the above
    29  copyright notice, this list of conditions and the following disclaimer
    30  in the documentation and/or other materials provided with the
    31  distribution.
    32     * Neither the name of Google Inc. nor the names of its
    33  contributors may be used to endorse or promote products derived from
    34  this software without specific prior written permission.
    35  
    36  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    37  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    38  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
    39  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
    40  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    41  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    42  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    43  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
    44  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    45  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    46  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    47  `