Skip to content

Commit

Permalink
fix label for license quick fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
yann300 committed Aug 16, 2023
1 parent 6ee97b7 commit eb881d8
Showing 1 changed file with 14 additions and 20 deletions.
34 changes: 14 additions & 20 deletions libs/remix-ui/editor/src/lib/providers/quickfixes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,55 +4,49 @@ export default {
{
id: 1.1,
nodeType: 'SourceUnit',
title: 'Add open-source license',
message: '// SPDX-License-Identifier: GPL-3.0-only'
},
{
id: 1.2,
nodeType: 'SourceUnit',
title: 'Add non-open-source license',
message: '// SPDX-License-Identifier: UNLICENSED'
},
{
id: 1.3,
id: 1.2,
nodeType: 'SourceUnit',
title: 'Apache-1.1',
title: 'Add Apache-1.1 license',
message: '// SPDX-License-Identifier: Apache-1.1'
},
{
id: 1.4,
id: 1.3,
nodeType: 'SourceUnit',
title: 'Apache-2.0',
title: 'Add Apache-2.0 license',
message: '// SPDX-License-Identifier: Apache-2.0'
},
{
id: 1.5,
id: 1.4,
nodeType: 'SourceUnit',
title: 'MIT',
title: 'Add MIT license',
message: '// SPDX-License-Identifier: MIT'
},
{
id: 1.6,
id: 1.5,
nodeType: 'SourceUnit',
title: 'EPL-1.0 (Eclipse)',
title: 'Add EPL-1.0 (Eclipse) license',
message: '// SPDX-License-Identifier: EPL-1.0'
},
{
id: 1.7,
id: 1.6,
nodeType: 'SourceUnit',
title: 'EPL-2.0 (Eclipse)',
title: 'Add EPL-2.0 (Eclipse) license',
message: '// SPDX-License-Identifier: EPL-2.0'
},
{
id: 1.8,
id: 1.7,
nodeType: 'SourceUnit',
title: 'GPL-3.0-only',
title: 'Add GPL-3.0-only license',
message: '// SPDX-License-Identifier: GPL-3.0-only'
},
{
id: 1.9,
id: 1.8,
nodeType: 'SourceUnit',
title: 'GPL-3.0-or-later',
title: 'Add GPL-3.0-or-later license',
message: '// SPDX-License-Identifier: GPL-3.0-or-later'
}
],
Expand Down

0 comments on commit eb881d8

Please sign in to comment.