diff --git a/LICENSE b/LICENSE index 893f8df..6ed0079 100644 --- a/LICENSE +++ b/LICENSE @@ -1,21 +1,10 @@ -MIT License +MIT LICENSE -Copyright (c) 2018 Salesforce +Copyright (c) 2018, Salesforce.com, Inc. +All rights reserved. -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: +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 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. \ No newline at end of file +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. diff --git a/base.js b/base.js index ca1f6b0..05f1dd9 100644 --- a/base.js +++ b/base.js @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2018, salesforce.com, inc. + * All rights reserved. + * SPDX-License-Identifier: MIT + * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT + */ 'use strict'; module.exports = { diff --git a/extended.js b/extended.js index 0ee898a..7524f44 100644 --- a/extended.js +++ b/extended.js @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2018, salesforce.com, inc. + * All rights reserved. + * SPDX-License-Identifier: MIT + * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT + */ 'use strict'; module.exports = { diff --git a/index.js b/index.js index eea7ebb..1b36ba4 100644 --- a/index.js +++ b/index.js @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2018, salesforce.com, inc. + * All rights reserved. + * SPDX-License-Identifier: MIT + * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT + */ 'use strict'; // Re-exporting the base configuration as the default config so you can omit the configuration name in the .eslintrc: diff --git a/lib/defaults.js b/lib/defaults.js index d6b2934..81b8a0a 100644 --- a/lib/defaults.js +++ b/lib/defaults.js @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2018, salesforce.com, inc. + * All rights reserved. + * SPDX-License-Identifier: MIT + * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT + */ 'use strict'; /** diff --git a/recommended.js b/recommended.js index cc14ccd..e2a1746 100644 --- a/recommended.js +++ b/recommended.js @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2018, salesforce.com, inc. + * All rights reserved. + * SPDX-License-Identifier: MIT + * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT + */ 'use strict'; module.exports = { diff --git a/test/base.js b/test/base.js index cc74148..61d6621 100644 --- a/test/base.js +++ b/test/base.js @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2018, salesforce.com, inc. + * All rights reserved. + * SPDX-License-Identifier: MIT + * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT + */ 'use strict'; const assert = require('assert'); diff --git a/test/extended.js b/test/extended.js index a8ffac0..4cc1610 100644 --- a/test/extended.js +++ b/test/extended.js @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2018, salesforce.com, inc. + * All rights reserved. + * SPDX-License-Identifier: MIT + * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT + */ 'use strict'; const assert = require('assert'); diff --git a/test/index.js b/test/index.js index 1eebfee..f827a8b 100644 --- a/test/index.js +++ b/test/index.js @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2018, salesforce.com, inc. + * All rights reserved. + * SPDX-License-Identifier: MIT + * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT + */ 'use strict'; const assert = require('assert'); diff --git a/test/recommended.js b/test/recommended.js index c6a628f..2924d23 100644 --- a/test/recommended.js +++ b/test/recommended.js @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2018, salesforce.com, inc. + * All rights reserved. + * SPDX-License-Identifier: MIT + * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT + */ 'use strict'; const assert = require('assert'); diff --git a/test/utils.js b/test/utils.js index b207267..a33a53b 100644 --- a/test/utils.js +++ b/test/utils.js @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2018, salesforce.com, inc. + * All rights reserved. + * SPDX-License-Identifier: MIT + * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT + */ 'use strict'; const fs = require('fs');