@puruslang/prettier-plugin-purus 0.5.0 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README-ja.md CHANGED
@@ -25,7 +25,7 @@ Purus — _/ˈpuː.rus/_ _**ラテン語で 純粋✨**_ — は、美しく、
25
25
 
26
26
  Purusは、 _Shiftキー_ をほとんど押さずにプログラミングできます。
27
27
 
28
- インストール:
28
+ ## インストール
29
29
 
30
30
  ```sh
31
31
  # Global
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@puruslang/prettier-plugin-purus",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "Prettier plugin for the Purus language",
5
5
  "license": "Apache-2.0",
6
6
  "main": "src/index.js",
package/src/index.js CHANGED
@@ -7,14 +7,14 @@ const KEYWORDS = new Set([
7
7
  "while", "until", "for", "in", "range",
8
8
  "match", "when",
9
9
  "try", "catch", "finally", "throw",
10
- "import", "from", "export", "default", "require", "use", "namespace", "pub", "all",
10
+ "import", "from", "export", "default", "require", "use", "namespace", "pub", "all", "with",
11
11
  "add", "sub", "mul", "div", "mod", "neg", "pow",
12
12
  "eq", "neq", "lt", "gt", "le", "ge",
13
13
  "and", "or", "not", "pipe", "coal",
14
14
  "is", "as", "of", "typeof", "instanceof", "type",
15
15
  "new", "delete", "this", "await",
16
16
  "class", "extends", "super", "static", "private", "get", "set",
17
- "true", "false", "null", "nil", "undefined",
17
+ "true", "false", "null", "nil", "undefined", "nan",
18
18
  "break", "continue",
19
19
  "list", "object",
20
20
  ]);