src

Go monorepo.
git clone git://code.dwrz.net/src
Log | Files | Refs

LICENSE-THIRD-PARTY (6442B)


      1 Staticcheck and its related tools make use of third party projects,
      2 either by reusing their code, or by statically linking them into
      3 resulting binaries. These projects are:
      4 
      5 * The Go Programming Language - https://golang.org/
      6   golang.org/x/mod - https://github.com/golang/mod
      7   golang.org/x/tools - https://github.com/golang/tools
      8   golang.org/x/sys - https://github.com/golang/sys
      9   golang.org/x/xerrors - https://github.com/golang/xerrors
     10 
     11     Copyright (c) 2009 The Go Authors. All rights reserved.
     12 
     13     Redistribution and use in source and binary forms, with or without
     14     modification, are permitted provided that the following conditions are
     15     met:
     16 
     17        * Redistributions of source code must retain the above copyright
     18     notice, this list of conditions and the following disclaimer.
     19        * Redistributions in binary form must reproduce the above
     20     copyright notice, this list of conditions and the following disclaimer
     21     in the documentation and/or other materials provided with the
     22     distribution.
     23        * Neither the name of Google Inc. nor the names of its
     24     contributors may be used to endorse or promote products derived from
     25     this software without specific prior written permission.
     26 
     27     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     28     "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     29     LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
     30     A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     31     OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     32     SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
     33     LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     34     DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     35     THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     36     (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     37     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     38 
     39 
     40 * github.com/BurntSushi/toml - https://github.com/BurntSushi/toml
     41 
     42     The MIT License (MIT)
     43 
     44     Copyright (c) 2013 TOML authors
     45 
     46     Permission is hereby granted, free of charge, to any person obtaining a copy
     47     of this software and associated documentation files (the "Software"), to deal
     48     in the Software without restriction, including without limitation the rights
     49     to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
     50     copies of the Software, and to permit persons to whom the Software is
     51     furnished to do so, subject to the following conditions:
     52 
     53     The above copyright notice and this permission notice shall be included in
     54     all copies or substantial portions of the Software.
     55 
     56     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     57     IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     58     FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
     59     AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
     60     LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
     61     OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
     62     THE SOFTWARE.
     63 
     64 * gogrep - https://github.com/mvdan/gogrep
     65 
     66     Copyright (c) 2017, Daniel Martí. All rights reserved.
     67 
     68     Redistribution and use in source and binary forms, with or without
     69     modification, are permitted provided that the following conditions are
     70     met:
     71 
     72        * Redistributions of source code must retain the above copyright
     73     notice, this list of conditions and the following disclaimer.
     74        * Redistributions in binary form must reproduce the above
     75     copyright notice, this list of conditions and the following disclaimer
     76     in the documentation and/or other materials provided with the
     77     distribution.
     78        * Neither the name of the copyright holder nor the names of its
     79     contributors may be used to endorse or promote products derived from
     80     this software without specific prior written permission.
     81 
     82     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     83     "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     84     LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
     85     A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     86     OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     87     SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
     88     LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     89     DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     90     THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     91     (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     92     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     93 
     94 * gosmith - https://github.com/dvyukov/gosmith
     95 
     96     Copyright (c) 2014 Dmitry Vyukov. All rights reserved.
     97 
     98     Redistribution and use in source and binary forms, with or without
     99     modification, are permitted provided that the following conditions are
    100     met:
    101 
    102        * Redistributions of source code must retain the above copyright
    103     notice, this list of conditions and the following disclaimer.
    104        * Redistributions in binary form must reproduce the above
    105     copyright notice, this list of conditions and the following disclaimer
    106     in the documentation and/or other materials provided with the
    107     distribution.
    108        * The name of Dmitry Vyukov may be used to endorse or promote
    109     products derived from this software without specific prior written permission.
    110 
    111     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    112     "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    113     LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
    114     A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
    115     OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    116     SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    117     LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    118     DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
    119     THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    120     (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    121     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.