Skip to content

Commit 95bd421

Browse files
committed
Fix lint
1 parent 5ac182d commit 95bd421

File tree

6 files changed

+126
-222
lines changed

6 files changed

+126
-222
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
Below are the steps to get your plugin running. You can also find instructions at:
22

3-
https://www.figma.com/plugin-docs/plugin-quickstart-guide/
3+
https://www.figma.com/plugin-docs/plugin-quickstart-guide/
44

55
This plugin template uses Typescript and NPM, two standard tools in creating JavaScript applications.
66

77
First, download Node.js which comes with NPM. This will allow you to install TypeScript and other
88
libraries. You can find the download link here:
99

10-
https://nodejs.org/en/download/
10+
https://nodejs.org/en/download/
1111

1212
Next, install TypeScript using the command:
1313

14-
npm install -g typescript
14+
npm install -g typescript
1515

1616
Finally, in the directory of your plugin, get the latest type definitions for the plugin API by running:
1717

18-
npm install --save-dev @figma/plugin-typings
18+
npm install --save-dev @figma/plugin-typings
1919

2020
If you are familiar with JavaScript, TypeScript will look very familiar. In fact, valid JavaScript code
2121
is already valid Typescript code.
@@ -34,7 +34,7 @@ We recommend writing TypeScript code using Visual Studio code:
3434
1. Download Visual Studio Code if you haven't already: https://code.visualstudio.com/.
3535
2. Open this directory in Visual Studio Code.
3636
3. Compile TypeScript to JavaScript: Run the "Terminal > Run Build Task..." menu item,
37-
then select "npm: watch". You will have to do this again every time
38-
you reopen Visual Studio Code.
37+
then select "npm: watch". You will have to do this again every time
38+
you reopen Visual Studio Code.
3939

4040
That's it! Visual Studio Code will regenerate the JavaScript file every time you save.

0 commit comments

Comments
 (0)